diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-07 22:05:02 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-07 22:05:02 +0300 |
commit | bc4094635391dcb93cc3d5d6bef56a96bfff2a00 (patch) | |
tree | 44cbbf6540a2b1a93880b450ac71d97b9ece4291 | |
parent | f8ca822a7e81bd80afa7181ec5c0f0b4a50a4945 (diff) | |
download | egawk-bc4094635391dcb93cc3d5d6bef56a96bfff2a00.tar.gz egawk-bc4094635391dcb93cc3d5d6bef56a96bfff2a00.tar.bz2 egawk-bc4094635391dcb93cc3d5d6bef56a96bfff2a00.zip |
Don't include config.h twice in replace.c.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | replace.c | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -4,6 +4,10 @@ * debug.c (print_instruction): Ditto. * builtin.c: Fix %lf format to be %f everywhere. + Unrelated: + + * replace.c: Don't include "config.h", awk.h gets it for us. + 2012-05-04 Arnold D. Robbins <arnold@skeeve.com> * getopt.c [DJGPP]: Change to __DJGPP__. @@ -27,8 +27,7 @@ * Do all necessary includes here, so that we don't have to worry about * overlapping includes in the files in missing.d. */ -#include "config.h" -#include "awk.h" +#include "awk.h" /* includes config.h for us */ #ifndef HAVE_SYSTEM |