* libc/include/sys/unistd.h: Add prototypes for `seteuid' and
`setegid' provided by Cygwin.
This commit is contained in:
parent
64b3062937
commit
b585720b59
|
@ -1,3 +1,8 @@
|
|||
Fri Jun 16 23:02:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/include/sys/unistd.h: Add prototypes for `seteuid' and
|
||||
`setegid' provided by Cygwin.
|
||||
|
||||
Thu Jun 15 0:21:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/stdio/fdopen.c: Take explicit given bin/textmode into
|
||||
|
|
|
@ -58,6 +58,10 @@ int _EXFUN(pipe, (int __fildes[2] ));
|
|||
int _EXFUN(read, (int __fildes, void *__buf, size_t __nbyte ));
|
||||
int _EXFUN(rmdir, (const char *__path ));
|
||||
void * _EXFUN(sbrk, (size_t __incr));
|
||||
#if defined(__CYGWIN__)
|
||||
int _EXFUN(setegid, (gid_t __gid ));
|
||||
int _EXFUN(seteuid, (uid_t __uid ));
|
||||
#endif
|
||||
int _EXFUN(setgid, (gid_t __gid ));
|
||||
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
||||
pid_t _EXFUN(setsid, (void ));
|
||||
|
|
Loading…
Reference in New Issue