diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-09 22:17:05 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-09 22:17:05 +0300 |
commit | a32072dc3298f3d368829b188969c2f58168675a (patch) | |
tree | b0743e5c4dd167603260a19bafcef480599e2ea4 /awk.h | |
parent | e9a95e3295e35e326114dc9c973d36e4a3f64ee2 (diff) | |
parent | 5557a45fbe813ba13eda8b78a16f84621a9794ee (diff) | |
download | egawk-a32072dc3298f3d368829b188969c2f58168675a.tar.gz egawk-a32072dc3298f3d368829b188969c2f58168675a.tar.bz2 egawk-a32072dc3298f3d368829b188969c2f58168675a.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -182,9 +182,9 @@ extern void *memset_ulong(void *dest, int val, unsigned long l); #define fwrite fwrite_unlocked #endif /* HAVE_FWRITE_UNLOCKED */ -#if defined(__EMX__) || defined(__MINGW32__) +#if defined(__DJGPP__) || defined(__EMX__) || defined(__MINGW32__) #include "nonposix.h" -#endif /* defined(__EMX__) || defined(__MINGW32__) */ +#endif /* defined(__DJGPP__) || defined(__EMX__) || defined(__MINGW32__) */ /* use this as lintwarn("...") this is a hack but it gives us the right semantics */ |