* libc/include/sys/unistd.h: Add prototypes for `seteuid' and

`setegid' provided by Cygwin.
This commit is contained in:
Corinna Vinschen 2000-06-16 21:04:37 +00:00
parent 64b3062937
commit b585720b59
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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 ));