* libc/include/sys/unistd.h: Add setregid and setreuid declarations
for Cygwin.
This commit is contained in:
parent
7d33eefa7b
commit
8bbcd9a1a5
@ -1,3 +1,8 @@
|
|||||||
|
2003-01-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/include/sys/unistd.h: Add setregid and setreuid declarations
|
||||||
|
for Cygwin.
|
||||||
|
|
||||||
2003-01-21 Anita Kulkarni <anitak@kpit.com>
|
2003-01-21 Anita Kulkarni <anitak@kpit.com>
|
||||||
|
|
||||||
* libc/time/difftime.c : Typecast the result to double.
|
* libc/time/difftime.c : Typecast the result to double.
|
||||||
|
@ -106,6 +106,10 @@ int _EXFUN(setgroups, (int ngroups, const gid_t *grouplist ));
|
|||||||
#endif
|
#endif
|
||||||
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
||||||
int _EXFUN(setpgrp, (void ));
|
int _EXFUN(setpgrp, (void ));
|
||||||
|
#if defined(__CYGWIN__)
|
||||||
|
int _EXFUN(setregid, (gid_t __rgid, gid_t __egid));
|
||||||
|
int _EXFUN(setreuid, (uid_t __ruid, uid_t __euid));
|
||||||
|
#endif
|
||||||
pid_t _EXFUN(setsid, (void ));
|
pid_t _EXFUN(setsid, (void ));
|
||||||
int _EXFUN(setuid, (uid_t __uid ));
|
int _EXFUN(setuid, (uid_t __uid ));
|
||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user