diff options
author | Christopher Faylor <me@cgf.cx> | 2001-01-18 04:24:03 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-01-18 04:24:03 +0000 |
commit | d0319c3b5bcb9d2a5beb1b21f8058f0b02e832db (patch) | |
tree | a7a3c331a7d3cc630dcb9788321bc0eff181eb0e /newlib/libc/include | |
parent | a7cde2b98a658522f552a7ac7ae0a9ef07981e0a (diff) | |
download | cygnal-d0319c3b5bcb9d2a5beb1b21f8058f0b02e832db.tar.gz cygnal-d0319c3b5bcb9d2a5beb1b21f8058f0b02e832db.tar.bz2 cygnal-d0319c3b5bcb9d2a5beb1b21f8058f0b02e832db.zip |
* libc/include/sys/unistd.h: Use correct declaration for setdtablesize.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index cc4a9c665..e01831ef0 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -118,7 +118,7 @@ int _EXFUN(_execve, (const char *__path, char * const __argv[], char * const #if defined(__CYGWIN__) || defined(__rtems__) int _EXFUN(getdtablesize, (void)); -void _EXFUN(setdtablesize, (int)); +int _EXFUN(setdtablesize, (int)); unsigned _EXFUN(usleep, (unsigned int __useconds)); int _EXFUN(ftruncate, (int __fd, off_t __length)); int _EXFUN(truncate, (const char *, off_t __length)); |