aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-10-13 16:03:33 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-10-13 16:03:33 +0300
commit9b85ee5535a0fd1f21b1cb43d4f5c91ef719684d (patch)
treeb8176c0f6d8731bf9c7613d3f7e6a7fb4e68774f /awk.h
parent919ef69e86da9cbed3ba50c462e89313bb283e48 (diff)
downloadegawk-9b85ee5535a0fd1f21b1cb43d4f5c91ef719684d.tar.gz
egawk-9b85ee5535a0fd1f21b1cb43d4f5c91ef719684d.tar.bz2
egawk-9b85ee5535a0fd1f21b1cb43d4f5c91ef719684d.zip
Remove gawkbool.h; rely on their being a stdbool.h.
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>