summaryrefslogtreecommitdiff
path: root/misc/select.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/select.c')
-rw-r--r--misc/select.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/select.c b/misc/select.c
index e5cd18e4e0..a5c8dbe734 100644
--- a/misc/select.c
+++ b/misc/select.c
@@ -25,12 +25,8 @@
after waiting the interval specified therein. Returns the number of ready
descriptors, or -1 for errors. */
int
-__select (nfds, readfds, writefds, exceptfds, timeout)
- int nfds;
- fd_set *readfds;
- fd_set *writefds;
- fd_set *exceptfds;
- struct timeval *timeout;
+__select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
+ struct timeval *timeout)
{
__set_errno (ENOSYS);
return -1;