* libc/include/sys/unistd.h: Add getsid declaration for cygwin.
This commit is contained in:
parent
8dca9e2302
commit
a94b60cea4
|
@ -1,3 +1,7 @@
|
|||
2002-08-18 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* libc/include/sys/unistd.h: Add getsid declaration for cygwin.
|
||||
|
||||
2002-08-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/sys/config.h[__PPC__][__SPE__]: Set
|
||||
|
|
|
@ -64,6 +64,9 @@ pid_t _EXFUN(getpgid, (pid_t));
|
|||
pid_t _EXFUN(getpgrp, (void ));
|
||||
pid_t _EXFUN(getpid, (void ));
|
||||
pid_t _EXFUN(getppid, (void ));
|
||||
#ifdef __CYGWIN__
|
||||
pid_t _EXFUN(getsid, (pid_t));
|
||||
#endif
|
||||
uid_t _EXFUN(getuid, (void ));
|
||||
#ifdef __CYGWIN__
|
||||
char * _EXFUN(getusershell, (void));
|
||||
|
|
Loading…
Reference in New Issue