summaryrefslogtreecommitdiff
path: root/lib/savedir.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-03-15 11:09:10 +0000
committerJim Meyering <jim@meyering.net>1998-03-15 11:09:10 +0000
commitbfbc3ce20cdcfd00c27922c2e78cbff43846fe0d (patch)
tree2045f8cb784dbc4f5cb1cbaf83e0d0b05f7277e2 /lib/savedir.c
parent0f5f23cb9eac6ee05f0571277298881b91939540 (diff)
downloadcoreutils-bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d.tar.xz
Use #if, not #ifdef with HAVE_ macros
Diffstat (limited to 'lib/savedir.c')
-rw-r--r--lib/savedir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/savedir.c b/lib/savedir.c
index 523e94e0e..5a9c339d8 100644
--- a/lib/savedir.c
+++ b/lib/savedir.c
@@ -1,5 +1,5 @@
/* savedir.c -- save the list of files in a directory in a string
- Copyright (C) 1990, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1997, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -17,13 +17,13 @@
/* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <sys/types.h>
-#ifdef HAVE_UNISTD_H
+#if HAVE_UNISTD_H
# include <unistd.h>
#endif