diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-26 21:52:12 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-26 21:52:12 +0300 |
commit | 0b4ff99fec136012af7a54f179bdf601e55e6274 (patch) | |
tree | 8a366d55be5cf40ff0c50e7fe5e36fa9a3104d14 /extension/revtwoway.c | |
parent | 8e34526a147a2e07c08c950b9f28c2e2132b6fd3 (diff) | |
download | egawk-0b4ff99fec136012af7a54f179bdf601e55e6274.tar.gz egawk-0b4ff99fec136012af7a54f179bdf601e55e6274.tar.bz2 egawk-0b4ff99fec136012af7a54f179bdf601e55e6274.zip |
Use config.h properly. Add AC_SYS_LARGEFILE.
Diffstat (limited to 'extension/revtwoway.c')
-rw-r--r-- | extension/revtwoway.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extension/revtwoway.c b/extension/revtwoway.c index 9ce0c733..0c1d9b00 100644 --- a/extension/revtwoway.c +++ b/extension/revtwoway.c @@ -27,9 +27,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> -#include <assert.h> -#include <errno.h> #include <stdlib.h> #include <string.h> #include <unistd.h> @@ -37,8 +39,6 @@ #include <sys/types.h> #include <sys/stat.h> -#include "config.h" - #include "gawkapi.h" #include "gettext.h" |