mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-28 15:58:07 +00:00
Formerly job.c.~91~
This commit is contained in:
parent
b758dc3f8b
commit
2370f79846
1 changed files with 5 additions and 0 deletions
5
job.c
5
job.c
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue