summaryrefslogtreecommitdiff
path: root/lib/userspec.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/userspec.c
parent0f5f23cb9eac6ee05f0571277298881b91939540 (diff)
downloadcoreutils-bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d.tar.xz
Use #if, not #ifdef with HAVE_ macros
Diffstat (limited to 'lib/userspec.c')
-rw-r--r--lib/userspec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/userspec.c b/lib/userspec.c
index bf51778d7..e73bee9c0 100644
--- a/lib/userspec.c
+++ b/lib/userspec.c
@@ -1,5 +1,5 @@
/* userspec.c -- Parse a user and group string.
- Copyright (C) 1989, 1990, 1991, 1992, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1990, 1991, 1992, 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
@@ -24,7 +24,7 @@
#ifdef __GNUC__
# define alloca __builtin_alloca
#else
-# ifdef HAVE_ALLOCA_H
+# if HAVE_ALLOCA_H
# include <alloca.h>
# else
# ifdef _AIX