diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-22 20:38:35 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-22 20:38:35 +0300 |
commit | 9a0488b6224c1b25b4222e36c209a5787508ea72 (patch) | |
tree | a7ca591bdf4163a6d0285443e7a18587fdc3575f /awk.h | |
parent | d0f55780cc2e6078c2c28db5f1b5731a4cb580bc (diff) | |
parent | df1a290040df77fba975567050c4304e70d00737 (diff) | |
download | egawk-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.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> |