Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-01-18 07:24:03 +0300
committerChristopher Faylor <me@cgf.cx>2001-01-18 07:24:03 +0300
commitd0319c3b5bcb9d2a5beb1b21f8058f0b02e832db (patch)
treea7a3c331a7d3cc630dcb9788321bc0eff181eb0e /newlib/libc/include
parenta7cde2b98a658522f552a7ac7ae0a9ef07981e0a (diff)
* libc/include/sys/unistd.h: Use correct declaration for setdtablesize.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r--newlib/libc/include/sys/unistd.h2
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));