* libc/include/sys/unistd.h: Declare function daemon for Cygwin.
This commit is contained in:
parent
34a1d63d80
commit
080ef41135
|
@ -1,3 +1,7 @@
|
|||
2003-09-10 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/include/sys/unistd.h: Declare function daemon for Cygwin.
|
||||
|
||||
2003-09-09 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/machine/powerpc/fix64.h: Fix typo for _simdldcheck
|
||||
|
|
|
@ -29,6 +29,9 @@ int _EXFUN(chroot, (const char *__path ));
|
|||
int _EXFUN(close, (int __fildes ));
|
||||
char _EXFUN(*ctermid, (char *__s ));
|
||||
char _EXFUN(*cuserid, (char *__s ));
|
||||
#if defined(__CYGWIN__)
|
||||
int _EXFUN(daemon, (int nochdir, int noclose));
|
||||
#endif
|
||||
int _EXFUN(dup, (int __fildes ));
|
||||
int _EXFUN(dup2, (int __fildes, int __fildes2 ));
|
||||
#if defined(__CYGWIN__)
|
||||
|
|
Loading…
Reference in New Issue