aboutsummaryrefslogtreecommitdiffstats
path: root/gawkmisc.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:49:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:49:45 +0300
commit6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd (patch)
treec1eb39be8cc5c19101385e171ec0c58f95d521cc /gawkmisc.c
parent6719bb6e1c5576e857ab6fc121ec31a75161a3e7 (diff)
downloadegawk-6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd.tar.gz
egawk-6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd.tar.bz2
egawk-6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd.zip
Move to gawk-3.0.3.
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;
}
-