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/fork.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/fork.c')
-rw-r--r-- | extension/fork.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/extension/fork.c b/extension/fork.c index 9f9fc086..6f96e4ba 100644 --- a/extension/fork.c +++ b/extension/fork.c @@ -26,6 +26,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 <assert.h> #include <errno.h> @@ -36,7 +40,7 @@ #include <sys/types.h> #include <sys/stat.h> -#include "config.h" + #include "gawkapi.h" #include "gettext.h" |