From bb3c8db9a5428f1cab562ea205e6b1305822fe5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Sun, 28 Oct 2007 06:57:08 +0100 Subject: [PATCH] Include "config.h" instead of . --- misc/alloca.c | 2 +- misc/basename.c | 2 +- misc/error.c | 2 +- misc/mktime.c | 2 +- misc/putenv.c | 2 +- misc/stpcpy.c | 2 +- misc/stpncpy.c | 2 +- misc/strcspn.c | 2 +- misc/strdup.c | 2 +- misc/strftime.c | 2 +- misc/strspn.c | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/misc/alloca.c b/misc/alloca.c index c1699c42d..460580638 100644 --- a/misc/alloca.c +++ b/misc/alloca.c @@ -22,7 +22,7 @@ your main control loop, etc. to force garbage collection. */ #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif #ifdef HAVE_STRING_H diff --git a/misc/basename.c b/misc/basename.c index 7fea76ed7..a948859f9 100644 --- a/misc/basename.c +++ b/misc/basename.c @@ -1,5 +1,5 @@ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif #ifdef HAVE_STRING_H #include diff --git a/misc/error.c b/misc/error.c index ca7f3b47b..ac9b84e68 100644 --- a/misc/error.c +++ b/misc/error.c @@ -22,7 +22,7 @@ /* Written by David MacKenzie . */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif #include diff --git a/misc/mktime.c b/misc/mktime.c index 6004bc055..bd52a22a5 100644 --- a/misc/mktime.c +++ b/misc/mktime.c @@ -23,7 +23,7 @@ /* #define DEBUG 1 */ #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif /* Assume that leap seconds are possible, unless told otherwise. diff --git a/misc/putenv.c b/misc/putenv.c index c13e03c3f..15ee03715 100644 --- a/misc/putenv.c +++ b/misc/putenv.c @@ -21,7 +21,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif /* Define-away any (possibly conflicting) prototype of putenv. diff --git a/misc/stpcpy.c b/misc/stpcpy.c index 0ad8863cd..167d22db8 100644 --- a/misc/stpcpy.c +++ b/misc/stpcpy.c @@ -19,7 +19,7 @@ USA. */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif #include diff --git a/misc/stpncpy.c b/misc/stpncpy.c index fcbdfe505..cb218e3b5 100644 --- a/misc/stpncpy.c +++ b/misc/stpncpy.c @@ -21,7 +21,7 @@ /* This is almost copied from strncpy.c, written by Torbjorn Granlund. */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif #ifdef _LIBC diff --git a/misc/strcspn.c b/misc/strcspn.c index 6c2e0b8a8..21bc3040f 100644 --- a/misc/strcspn.c +++ b/misc/strcspn.c @@ -19,7 +19,7 @@ USA. */ #if HAVE_CONFIG_H -# include +# include "config.h" #endif #if defined _LIBC || HAVE_STRING_H diff --git a/misc/strdup.c b/misc/strdup.c index 7b73a50c2..cc50aa4d9 100644 --- a/misc/strdup.c +++ b/misc/strdup.c @@ -16,7 +16,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif #ifdef STDC_HEADERS diff --git a/misc/strftime.c b/misc/strftime.c index 8c838f783..eff617af8 100644 --- a/misc/strftime.c +++ b/misc/strftime.c @@ -18,7 +18,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif #ifdef _LIBC diff --git a/misc/strspn.c b/misc/strspn.c index 01d8d0fc5..90368b591 100644 --- a/misc/strspn.c +++ b/misc/strspn.c @@ -16,7 +16,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif #if defined(HAVE_STRING_H)