* libc/include/sys/unistd.h: Add setgroups prototype for Cygwin.
This commit is contained in:
parent
4f9cdc9378
commit
b96332ce3c
|
@ -1,3 +1,7 @@
|
|||
2002-07-29 Pierre Humblet <pierre.humblet@ieee.org>
|
||||
|
||||
* libc/include/sys/unistd.h: Add setgroups prototype for Cygwin.
|
||||
|
||||
2002-07-29 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/sys/linux/Makefile.am: Add aio64.c.
|
||||
|
|
|
@ -101,6 +101,9 @@ int _EXFUN(setegid, (gid_t __gid ));
|
|||
int _EXFUN(seteuid, (uid_t __uid ));
|
||||
#endif
|
||||
int _EXFUN(setgid, (gid_t __gid ));
|
||||
#if defined(__CYGWIN__)
|
||||
int _EXFUN(setgroups, (int ngroups, const gid_t *grouplist ));
|
||||
#endif
|
||||
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
||||
int _EXFUN(setpgrp, (void ));
|
||||
pid_t _EXFUN(setsid, (void ));
|
||||
|
|
Loading…
Reference in New Issue