summaryrefslogtreecommitdiff
path: root/gawkmisc.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 13:14:38 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 13:14:38 +0300
commitfae4762eba9ff7bb466a600130e9c90eaac6b0bc (patch)
tree62711fe7cd511824b5f8a90ba1ba7b523d42e127 /gawkmisc.c
parentbc70de7b3302d5a81515b901cae376b8b51d2004 (diff)
downloadgawk-fae4762eba9ff7bb466a600130e9c90eaac6b0bc.tar.gz
Move to gawk-3.1.1.gawk-3.1.1
Diffstat (limited to 'gawkmisc.c')
-rw-r--r--gawkmisc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gawkmisc.c b/gawkmisc.c
index 35e5bf9a..18a6807c 100644
--- a/gawkmisc.c
+++ b/gawkmisc.c
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 1986, 1988, 1989, 1991-2001 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991-2002 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -31,6 +31,9 @@
/* some old compilers don't grok #elif. sigh */
+#ifdef __EMX__
+#include "pc/gawkmisc.pc"
+#else /* not __EMX__ */
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
#include "gawkmisc.pc"
#else /* not MSDOS, not OS2, not WIN32 */
@@ -48,6 +51,7 @@
#endif /* not atarist */
#endif /* not VMS */
#endif /* not MSDOS, not OS2, not WIN32 */
+#endif /* not __EMX__ */
/* xmalloc --- provide this so that other GNU library routines work */