diff options
author | Jim Meyering <jim@meyering.net> | 1996-01-06 06:10:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-01-06 06:10:08 +0000 |
commit | 634853cee6808a481035d12af58b8d860b4cec95 (patch) | |
tree | 4900173d47c11c9130f4c8dbb81c2d543eccf4be | |
parent | 0f100b0d3f541e0bcc107eb8cc416277ce759109 (diff) | |
download | coreutils-634853cee6808a481035d12af58b8d860b4cec95.tar.xz |
Remove NGROUPS_MAX junk. It wasn't being used.
-rw-r--r-- | src/su.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -94,18 +94,11 @@ static void log_su (); #ifdef _POSIX_VERSION #include <limits.h> -#ifdef NGROUPS_MAX -#undef NGROUPS_MAX -#endif -#define NGROUPS_MAX sysconf (_SC_NGROUPS_MAX) #else /* not _POSIX_VERSION */ struct passwd *getpwuid (); struct group *getgrgid (); uid_t getuid (); #include <sys/param.h> -#if !defined(NGROUPS_MAX) && defined(NGROUPS) -#define NGROUPS_MAX NGROUPS -#endif #endif /* not _POSIX_VERSION */ #ifndef HAVE_ENDGRENT |