From: Jim Meyering Date: Sun, 21 Dec 1997 22:21:10 +0000 (+0000) Subject: Don't include limits.h or sys/param.h. X-Git-Tag: FILEUTILS-3_16h~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62fed0f3a2a05769ab2b3614ae23f0482690ec43;p=thirdparty%2Fcoreutils.git Don't include limits.h or sys/param.h. --- diff --git a/src/id.c b/src/id.c index 08a236c1eb..8eae243b67 100644 --- a/src/id.c +++ b/src/id.c @@ -29,17 +29,13 @@ #include "system.h" #include "error.h" -#ifdef _POSIX_VERSION -# include - -#else /* not _POSIX_VERSION */ +#ifndef _POSIX_VERSION struct passwd *getpwuid (); struct group *getgrgid (); uid_t getuid (); gid_t getgid (); uid_t geteuid (); gid_t getegid (); -# include #endif /* not _POSIX_VERSION */ int getugroups ();