diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/hsearch_r.c | 7 | ||||
-rw-r--r-- | misc/select.c | 8 |
2 files changed, 4 insertions, 11 deletions
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index 9d6cd81c95..7bc04cfee6 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -142,11 +142,8 @@ weak_alias (__hdestroy_r, hdestroy_r) equality of the stored and the parameter value. This helps to prevent unnecessary expensive calls of strcmp. */ int -__hsearch_r (item, action, retval, htab) - ENTRY item; - ACTION action; - ENTRY **retval; - struct hsearch_data *htab; +__hsearch_r (ENTRY item, ACTION action, ENTRY **retval, + struct hsearch_data *htab) { unsigned int hval; unsigned int count; 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; |