diff options
Diffstat (limited to 'sysdeps/mach/hurd/select.c')
-rw-r--r-- | sysdeps/mach/hurd/select.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sysdeps/mach/hurd/select.c b/sysdeps/mach/hurd/select.c index 47baf04beb..7bf07d45c3 100644 --- a/sysdeps/mach/hurd/select.c +++ b/sysdeps/mach/hurd/select.c @@ -26,12 +26,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) { struct timespec ts, *to; |