From: Jim Meyering Date: Tue, 20 Apr 1999 13:26:06 +0000 (+0000) Subject: : Include first, since it can do X-Git-Tag: SH-UTILS-1_16g~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7a0b8f429915148db0774bea09e37053bbac4f0;p=thirdparty%2Fcoreutils.git : Include first, since it can do things like #define const, and this must be done before including any system headers. --- diff --git a/src/shred.c b/src/shred.c index ceba229198..e7b83e4398 100644 --- a/src/shred.c +++ b/src/shred.c @@ -77,6 +77,10 @@ #define AUTHORS "Colin Plumb" +#if HAVE_CONFIG_H +# include +#endif + #include #include #include @@ -84,8 +88,6 @@ #if HAVE_CONFIG_H /* Default fileutils build */ -# include - # include "system.h" # include "xstrtol.h" # include "closeout.h"