aboutsummaryrefslogtreecommitdiffstats
path: root/gawkmisc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gawkmisc.c')
-rw-r--r--gawkmisc.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/gawkmisc.c b/gawkmisc.c
index f7c0f3ce..07079714 100644
--- a/gawkmisc.c
+++ b/gawkmisc.c
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 1986, 1988, 1989, 1991 - 96 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991 - 97 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -27,7 +27,7 @@
/* some old compilers don't grok #elif. sigh */
-#if defined(MSDOS) || defined(OS2)
+#if defined(MSDOS) || defined(OS2) || defined(WIN32)
#include "gawkmisc.pc"
#else
#if defined(VMS)
@@ -36,14 +36,10 @@
#if defined(atarist)
#include "atari/gawkmisc.atr"
#else
-#if defined(__amigados__)
-#include "amiga/gawkmisc.ami"
-#else
#include "posix/gawkmisc.c"
#endif
#endif
#endif
-#endif
/* xmalloc --- provide this so that other GNU library routines work */
@@ -65,4 +61,3 @@ size_t bytes;
return p;
}
-