diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-13 16:03:33 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-13 16:03:33 +0300 |
commit | 9b85ee5535a0fd1f21b1cb43d4f5c91ef719684d (patch) | |
tree | b8176c0f6d8731bf9c7613d3f7e6a7fb4e68774f /awk.h | |
parent | 919ef69e86da9cbed3ba50c462e89313bb283e48 (diff) | |
download | egawk-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.h | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -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> |