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/revoutput.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/revoutput.c')
-rw-r--r-- | extension/revoutput.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extension/revoutput.c b/extension/revoutput.c index bb195a29..7430e61b 100644 --- a/extension/revoutput.c +++ b/extension/revoutput.c @@ -27,6 +27,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -35,8 +39,6 @@ #include <sys/types.h> #include <sys/stat.h> -#include "config.h" - #include "gawkapi.h" #include "gettext.h" |