summaryrefslogtreecommitdiff
path: root/lib/putenv.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-15 03:56:06 +0000
committerJim Meyering <jim@meyering.net>1996-07-15 03:56:06 +0000
commit19bff1c02d0e0fb32cd11c21db739e8338a757c6 (patch)
tree500fb4d19edca1f7a6c03fd66329d2ae8a61118b /lib/putenv.c
parentfd984b9655ac56b6c0af9474562faf659b28113c (diff)
downloadcoreutils-19bff1c02d0e0fb32cd11c21db739e8338a757c6.tar.xz
indent cpp-directives
Diffstat (limited to 'lib/putenv.c')
-rw-r--r--lib/putenv.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/putenv.c b/lib/putenv.c
index a7060506c..ee3ccc04a 100644
--- a/lib/putenv.c
+++ b/lib/putenv.c
@@ -21,7 +21,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <errno.h>
#ifdef HAVE_CONFIG_H
-#include <config.h>
+# include <config.h>
#endif
/* Define-away any (possibly conflicting) prototype of putenv.
@@ -29,26 +29,26 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#define putenv _sys_putenv
#if defined (__GNU_LIBRARY__) || defined (HAVE_STDLIB_H)
-#include <stdlib.h>
+# include <stdlib.h>
#endif
#if defined (__GNU_LIBRARY__) || defined (HAVE_STRING_H)
-#include <string.h>
+# include <string.h>
#endif
#if defined (__GNU_LIBRARY__) || defined (HAVE_UNISTD_H)
-#include <unistd.h>
+# include <unistd.h>
#endif
#undef putenv
#if !defined (__GNU_LIBRARY__) && !defined (HAVE_STRCHR)
-#define strchr index
+# define strchr index
#endif
#if !defined (__GNU_LIBRARY__) && !defined (HAVE_MEMCPY)
-#define memcpy(d,s,n) bcopy ((s), (d), (n))
+# define memcpy(d,s,n) bcopy ((s), (d), (n))
#endif
#if HAVE_GNU_LD
-#define environ __environ
+# define environ __environ
#else
extern char **environ;
#endif