diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-01 22:58:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-09 22:13:32 +0300 |
commit | 5557a45fbe813ba13eda8b78a16f84621a9794ee (patch) | |
tree | fa9f763383e65d13de2827c0d45f132185906fb8 /nonposix.h | |
parent | c51a97fc72b732d19dbc83a7a4aadf9893a92b78 (diff) | |
download | egawk-5557a45fbe813ba13eda8b78a16f84621a9794ee.tar.gz egawk-5557a45fbe813ba13eda8b78a16f84621a9794ee.tar.bz2 egawk-5557a45fbe813ba13eda8b78a16f84621a9794ee.zip |
Initial additions to update DJGPP port.
Diffstat (limited to 'nonposix.h')
-rw-r--r-- | nonposix.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -68,3 +68,10 @@ int getpgrp(void); #if defined(__DJGPP__) || defined(__MINGW32__) int getppid(void); #endif + +#ifdef __DJGPP__ +/* Prototypes of for Posix functions for which we define replacements + in pc/ files. */ +wint_t btowc (int c); +wint_t putwc (wchar_t wc, FILE *stream); +#endif |