mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-01 12:00:35 +08:00
* 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>
|
Thu Jun 15 0:21:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/stdio/fdopen.c: Take explicit given bin/textmode into
|
* 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(read, (int __fildes, void *__buf, size_t __nbyte ));
|
||||||
int _EXFUN(rmdir, (const char *__path ));
|
int _EXFUN(rmdir, (const char *__path ));
|
||||||
void * _EXFUN(sbrk, (size_t __incr));
|
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(setgid, (gid_t __gid ));
|
||||||
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
|
||||||
pid_t _EXFUN(setsid, (void ));
|
pid_t _EXFUN(setsid, (void ));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user