diff options
author | Christopher Faylor <me@cgf.cx> | 2003-01-20 15:28:02 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-01-20 15:28:02 +0000 |
commit | f9e41155f05b941f158394cd50f54f22736b6996 (patch) | |
tree | 311b81de3fe8bc5ebc8d8669e07f1d7e999caa09 /newlib/libc | |
parent | d52cfbfdd88ba563af13f0e283472c825f785cd7 (diff) | |
download | cygnal-f9e41155f05b941f158394cd50f54f22736b6996.tar.gz cygnal-f9e41155f05b941f158394cd50f54f22736b6996.tar.bz2 cygnal-f9e41155f05b941f158394cd50f54f22736b6996.zip |
* libc/include/sys/unistd.h: Add rresvport declaration for cygwin.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index b5ed650ed..1e5f519dd 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -88,7 +88,8 @@ ssize_t _EXFUN(pread, (int __fd, void *__buf, size_t __nbytes, off_t __offset)); ssize_t _EXFUN(pwrite, (int __fd, const void *__buf, size_t __nbytes, off_t __offset)); _READ_WRITE_RETURN_TYPE _EXFUN(read, (int __fd, void *__buf, size_t __nbyte )); #if defined(__CYGWIN__) -int _EXFUN(revoke, (char *path)); +int _EXFUN(rresvport, (int *__alport)); +int _EXFUN(revoke, (char *__path)); #endif int _EXFUN(rmdir, (const char *__path )); #if defined(__CYGWIN__) |