summaryrefslogtreecommitdiff
path: root/nonposix.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-08-01 22:58:00 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-08-09 22:13:32 +0300
commit5557a45fbe813ba13eda8b78a16f84621a9794ee (patch)
treefa9f763383e65d13de2827c0d45f132185906fb8 /nonposix.h
parentc51a97fc72b732d19dbc83a7a4aadf9893a92b78 (diff)
downloadgawk-5557a45fbe813ba13eda8b78a16f84621a9794ee.tar.gz
Initial additions to update DJGPP port.
Diffstat (limited to 'nonposix.h')
-rw-r--r--nonposix.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/nonposix.h b/nonposix.h
index 9a722dd9..b4f52246 100644
--- a/nonposix.h
+++ b/nonposix.h
@@ -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