summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-03-15 17:54:50 +0000
committerJim Meyering <jim@meyering.net>1998-03-15 17:54:50 +0000
commit6684ffa826953b473fe8d7b93770905d081dda74 (patch)
treecdd766842381aab41179bf6b4c9b12295aa40572 /src/install.c
parentbfbc3ce20cdcfd00c27922c2e78cbff43846fe0d (diff)
downloadcoreutils-6684ffa826953b473fe8d7b93770905d081dda74.tar.xz
Use #if, not #ifdef with HAVE_ macros.
Use #if !, not #ifndef with HAVE_ macros.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c
index 4d9c4374c..c36fd1b9e 100644
--- a/src/install.c
+++ b/src/install.c
@@ -95,11 +95,11 @@ uid_t getuid ();
gid_t getgid ();
#endif
-#ifndef HAVE_ENDGRENT
+#if ! HAVE_ENDGRENT
# define endgrent() ((void) 0)
#endif
-#ifndef HAVE_ENDPWENT
+#if ! HAVE_ENDPWENT
# define endpwent() ((void) 0)
#endif