diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:39:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-06 21:39:57 +0200 |
commit | c399d8f8226bba46d34b8672ca50722605f95e37 (patch) | |
tree | d17c6dfa1450428f5efac80418d89276681099d8 /awk.h | |
parent | 77620464b7805e03fcfc5de21a6e46b32426c6f0 (diff) | |
download | egawk-c399d8f8226bba46d34b8672ca50722605f95e37.tar.gz egawk-c399d8f8226bba46d34b8672ca50722605f95e37.tar.bz2 egawk-c399d8f8226bba46d34b8672ca50722605f95e37.zip |
MBS support tweaks for DJGPP and z/OS.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -76,6 +76,10 @@ extern int errno; #endif +#ifdef STDC_HEADERS +#include <stdlib.h> +#endif /* not STDC_HEADERS */ + #include "mbsupport.h" /* defines MBS_SUPPORT */ #if MBS_SUPPORT @@ -131,10 +135,6 @@ typedef int off_t; #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif -#ifdef STDC_HEADERS -#include <stdlib.h> -#endif /* not STDC_HEADERS */ - #include "protos.h" #ifdef HAVE_STRING_H |