Formerly job.c.~91~

This commit is contained in:
Roland McGrath 1993-01-21 23:27:00 +00:00
parent b758dc3f8b
commit 2370f79846

5
job.c
View file

@ -28,6 +28,11 @@ static char default_path[] = ":/bin:/usr/bin";
/* Default shell to use. */ /* Default shell to use. */
char default_shell[] = "/bin/sh"; 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 #ifndef NGROUPS_MAX
#ifdef POSIX #ifdef POSIX
#define GET_NGROUPS_MAX sysconf (_SC_NGROUPS_MAX) #define GET_NGROUPS_MAX sysconf (_SC_NGROUPS_MAX)