aboutsummaryrefslogtreecommitdiffstats
path: root/nonposix.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-08-09 22:17:05 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-08-09 22:17:05 +0300
commita32072dc3298f3d368829b188969c2f58168675a (patch)
treeb0743e5c4dd167603260a19bafcef480599e2ea4 /nonposix.h
parente9a95e3295e35e326114dc9c973d36e4a3f64ee2 (diff)
parent5557a45fbe813ba13eda8b78a16f84621a9794ee (diff)
downloadegawk-a32072dc3298f3d368829b188969c2f58168675a.tar.gz
egawk-a32072dc3298f3d368829b188969c2f58168675a.tar.bz2
egawk-a32072dc3298f3d368829b188969c2f58168675a.zip
Merge branch 'master' into feature/fix-comments
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