]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Don't include limits.h or sys/param.h.
authorJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 22:21:10 +0000 (22:21 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 22:21:10 +0000 (22:21 +0000)
src/id.c

index 08a236c1ebbc500ba55199385c6886230aa65700..8eae243b67e30e7a2e6993380be50a04c715162e 100644 (file)
--- a/src/id.c
+++ b/src/id.c
 #include "system.h"
 #include "error.h"
 
-#ifdef _POSIX_VERSION
-# include <limits.h>
-
-#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 <sys/param.h>
 #endif /* not _POSIX_VERSION */
 
 int getugroups ();