From da326536990b4518c6e067ef773321d2e3d20889 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 24 Feb 2006 10:09:59 +0000 Subject: [PATCH] Normalize inclusion of `config.h'. --- lib/mkdtemp.c | 2 +- lib/setenv.c | 2 +- lib/unsetenv.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mkdtemp.c b/lib/mkdtemp.c index 469cf47186..84217d6952 100644 --- a/lib/mkdtemp.c +++ b/lib/mkdtemp.c @@ -18,7 +18,7 @@ /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c. */ #ifdef HAVE_CONFIG_H -# include "config.h" +# include #endif /* Specification. */ diff --git a/lib/setenv.c b/lib/setenv.c index 33dbeb7a39..098fb373db 100644 --- a/lib/setenv.c +++ b/lib/setenv.c @@ -15,7 +15,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif #include diff --git a/lib/unsetenv.c b/lib/unsetenv.c index 4b53fc9c8b..33bdd0bbfa 100644 --- a/lib/unsetenv.c +++ b/lib/unsetenv.c @@ -15,7 +15,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif -- 2.30.2