diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-11-05 18:06:24 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-11-05 18:06:24 +0000 |
commit | c7dd4f95118f40d8fcb2f83c11d9419aba5bdef2 (patch) | |
tree | 38db51321c0dcdb8d7c8354f00df4e3e836feb74 /newlib/libc/include/sys/unistd.h | |
parent | 48da07548b0224b9ab9996010c2e8467a9f5a2a6 (diff) | |
download | cygnal-c7dd4f95118f40d8fcb2f83c11d9419aba5bdef2.tar.gz cygnal-c7dd4f95118f40d8fcb2f83c11d9419aba5bdef2.tar.bz2 cygnal-c7dd4f95118f40d8fcb2f83c11d9419aba5bdef2.zip |
* libc/include/sys/unistd.h: Add prototypes for endusershell(),
getusershell(), iruserok(), revoke(), ruserok() and setusershell()
when __CYGWIN__ is defined.
* libc/sys/cygwin/sys/utmp.h: Add prototypes for login_tty() and
logwtmp().
Diffstat (limited to 'newlib/libc/include/sys/unistd.h')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index b9e7690a4..8ebabe3b4 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -29,6 +29,9 @@ char _EXFUN(*ctermid, (char *__s )); char _EXFUN(*cuserid, (char *__s )); int _EXFUN(dup, (int __fildes )); int _EXFUN(dup2, (int __fildes, int __fildes2 )); +#if defined(__CYGWIN__) +void _EXFUN(endusershell, (void)); +#endif int _EXFUN(execl, (const char *__path, const char *, ... )); int _EXFUN(execle, (const char *__path, const char *, ... )); int _EXFUN(execlp, (const char *__file, const char *, ... )); @@ -60,7 +63,9 @@ pid_t _EXFUN(getpid, (void )); pid_t _EXFUN(getppid, (void )); uid_t _EXFUN(getuid, (void )); #ifdef __CYGWIN__ +char * _EXFUN(getusershell, (void)); char _EXFUN(*getwd, (char *__buf )); +int _EXFUN(iruserok, (unsigned long raddr, int superuser, const char *ruser, const char *luser)); #endif int _EXFUN(isatty, (int __fildes )); int _EXFUN(lchown, (const char *__path, uid_t __owner, gid_t __group )); @@ -74,7 +79,13 @@ int _EXFUN(pthread_atfork, (void (*)(void), void (*)(void), void (*)(void))); #endif int _EXFUN(pipe, (int __fildes[2] )); _READ_WRITE_RETURN_TYPE _EXFUN(read, (int __fd, void *__buf, size_t __nbyte )); +#if defined(__CYGWIN__) +int _EXFUN(revoke, (char *path)); +#endif int _EXFUN(rmdir, (const char *__path )); +#if defined(__CYGWIN__) +int _EXFUN(ruserok, (const char *rhost, int superuser, const char *ruser, const char *luser)); +#endif #if defined(__rtems__) void * _EXFUN(sbrk, (ptrdiff_t __incr)); #else @@ -89,6 +100,9 @@ int _EXFUN(setpgid, (pid_t __pid, pid_t __pgid )); int _EXFUN(setpgrp, (void )); pid_t _EXFUN(setsid, (void )); int _EXFUN(setuid, (uid_t __uid )); +#if defined(__CYGWIN__) +void _EXFUN(setusershell, (void)); +#endif unsigned _EXFUN(sleep, (unsigned int __seconds )); void _EXFUN(swab, (const void *, void *, ssize_t)); long _EXFUN(sysconf, (int __name )); |