aboutsummaryrefslogtreecommitdiffstats
path: root/nonposix.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-08-09 22:16:41 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-08-09 22:16:41 +0300
commitd16278e6441adcc416d70c43b2ea6a4474f221c5 (patch)
tree4bcfb44fe0c8eef34d409730d0793842656c0965 /nonposix.h
parente9786ddcfcdeae8e6230f9c4b8f51445a3ff1d9c (diff)
parent5557a45fbe813ba13eda8b78a16f84621a9794ee (diff)
downloadegawk-d16278e6441adcc416d70c43b2ea6a4474f221c5.tar.gz
egawk-d16278e6441adcc416d70c43b2ea6a4474f221c5.tar.bz2
egawk-d16278e6441adcc416d70c43b2ea6a4474f221c5.zip
Merge branch 'master' into feature/api-mpfr
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