From bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 15 Mar 1998 11:09:10 +0000 Subject: Use #if, not #ifdef with HAVE_ macros --- lib/userspec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/userspec.c') 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 # else # ifdef _AIX -- cgit v1.2.3-54-g00ecf