aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-10-22 20:38:35 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-10-22 20:38:35 +0300
commit9a0488b6224c1b25b4222e36c209a5787508ea72 (patch)
treea7ca591bdf4163a6d0285443e7a18587fdc3575f /awk.h
parentd0f55780cc2e6078c2c28db5f1b5731a4cb580bc (diff)
parentdf1a290040df77fba975567050c4304e70d00737 (diff)
downloadegawk-9a0488b6224c1b25b4222e36c209a5787508ea72.tar.gz
egawk-9a0488b6224c1b25b4222e36c209a5787508ea72.tar.bz2
egawk-9a0488b6224c1b25b4222e36c209a5787508ea72.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/awk.h b/awk.h
index 5eec241e..895dad9a 100644
--- a/awk.h
+++ b/awk.h
@@ -53,9 +53,7 @@
#include <stdio.h>
#include <assert.h>
-#ifdef HAVE_LIMITS_H
#include <limits.h>
-#endif /* HAVE_LIMITS_H */
#include <ctype.h>
#include <setjmp.h>
@@ -73,11 +71,8 @@
#error "gawk no longer supports non-C89 environments (no __STDC__ or __STDC__ < 1)"
#endif
-#if defined(HAVE_STDARG_H)
#include <stdarg.h>
-#else
-#error "gawk no longer supports <varargs.h>. Please update your compiler and runtime"
-#endif
+#include <stdbool.h>
#include <signal.h>
#include <time.h>
#include <errno.h>
@@ -89,11 +84,6 @@ extern int errno;
#include <stdlib.h>
#endif /* not STDC_HEADERS */
-#ifdef HAVE_STDBOOL_H
-#include <stdbool.h>
-#else
-#include "missing_d/gawkbool.h"
-#endif
/* We can handle multibyte strings. */
#include <wchar.h>