* libc/include/sys/unistd.h (eaccess, euidaccess) [__CYGWIN__]:

Add declarations.
This commit is contained in:
Eric Blake 2009-09-25 23:57:09 +00:00
parent 76fe91b90b
commit 65d436509b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-09-24 Eric Blake <ebb9@byu.net>
* libc/include/sys/unistd.h (eaccess, euidaccess) [__CYGWIN__]:
Add declarations.
2009-09-23 Corinna Vinschen <corinna@vinschen.de> 2009-09-23 Corinna Vinschen <corinna@vinschen.de>
* libc/locale/locale.c: Drop Cygwin-specific windows.h include. * libc/locale/locale.c: Drop Cygwin-specific windows.h include.

View File

@ -38,7 +38,9 @@ int _EXFUN(daemon, (int nochdir, int noclose));
int _EXFUN(dup, (int __fildes )); int _EXFUN(dup, (int __fildes ));
int _EXFUN(dup2, (int __fildes, int __fildes2 )); int _EXFUN(dup2, (int __fildes, int __fildes2 ));
#if defined(__CYGWIN__) #if defined(__CYGWIN__)
int _EXFUN(eaccess, (const char *__path, int __mode));
void _EXFUN(endusershell, (void)); void _EXFUN(endusershell, (void));
int _EXFUN(euidaccess, (const char *__path, int __mode));
#endif #endif
int _EXFUN(execl, (const char *__path, const char *, ... )); int _EXFUN(execl, (const char *__path, const char *, ... ));
int _EXFUN(execle, (const char *__path, const char *, ... )); int _EXFUN(execle, (const char *__path, const char *, ... ));