diff options
Diffstat (limited to 'gawkmisc.c')
-rw-r--r-- | gawkmisc.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -32,11 +32,8 @@ /* some old compilers don't grok #elif. sigh */ -#ifdef __EMX__ +#if defined(__EMX__) || defined(__DJGPP__) || defined(__MINGW32__) #include "pc/gawkmisc.pc" -#else /* not __EMX__ */ -#if defined(__DJGPP__) || defined(__MINGW32__) -#include "gawkmisc.pc" #else /* not __DJGPP__, not __MINGW32__ */ #if defined(VMS) #include "vms/gawkmisc.vms" @@ -44,7 +41,6 @@ #include "posix/gawkmisc.c" #endif /* not VMS */ #endif /* not __DJGPP__, not __MINGW32__ */ -#endif /* not __EMX__ */ /* xmalloc --- provide this so that other GNU library routines work */ |