diff options
author | Roland McGrath <roland@redhat.com> | 1993-01-21 23:27:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-01-21 23:27:00 +0000 |
commit | 2370f7984646d501b1e51eb9dc924119b292797c (patch) | |
tree | 9a24c563c02c3f62858357ca0a96f9551c917c9c | |
parent | b758dc3f8b3e9385c9af82562d7029aab59fb929 (diff) | |
download | gunmake-2370f7984646d501b1e51eb9dc924119b292797c.tar.gz |
Formerly job.c.~91~
-rw-r--r-- | job.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,11 @@ static char default_path[] = ":/bin:/usr/bin"; /* Default shell to use. */ char default_shell[] = "/bin/sh"; +/* 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) |