summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-01-06 21:24:34 +0000
committerRoland McGrath <roland@redhat.com>1996-01-06 21:24:34 +0000
commitcb69b06199e968a3238a049753a9c3c68b6885ba (patch)
tree00a9c456a8c2bfc1a1ffa2f042b841dc6932b092
parent21fed1fbcc1f87321dd59b86ea6959fcc6671933 (diff)
downloadgunmake-cb69b06199e968a3238a049753a9c3c68b6885ba.tar.gz
(NGROUPS_MAX): Don't try to define this macro.
-rw-r--r--job.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/job.c b/job.c
index 3d4f328..61c4af2 100644
--- a/job.c
+++ b/job.c
@@ -41,20 +41,6 @@ static int dos_batch_file;
#include <sys/file.h>
#endif
-
-/* If NGROUPS_MAX == 0 then try other methods for finding a real value. */
-#if defined (NGROUPS_MAX) && NGROUPS_MAX == 0
-#undef NGROUPS_MAX
-#endif /* NGROUPS_MAX == 0 */
-
-#ifndef NGROUPS_MAX
-#ifdef POSIX
-#define GET_NGROUPS_MAX sysconf (_SC_NGROUPS_MAX)
-#else /* Not POSIX. */
-#define NGROUPS_MAX NGROUPS
-#endif /* POSIX. */
-#endif
-
#if defined (HAVE_SYS_WAIT_H) || defined (HAVE_UNION_WAIT)
#include <sys/wait.h>
#endif