diff options
Diffstat (limited to 'misc/hsearch.c')
-rw-r--r-- | misc/hsearch.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/misc/hsearch.c b/misc/hsearch.c index 7a0b0dc406..9442f69a61 100644 --- a/misc/hsearch.c +++ b/misc/hsearch.c @@ -24,9 +24,7 @@ static struct hsearch_data htab; /* Define the non-reentrant function using the reentrant counterparts. */ ENTRY * -hsearch (item, action) - ENTRY item; - ACTION action; +hsearch (ENTRY item, ACTION action) { ENTRY *result; @@ -37,8 +35,7 @@ hsearch (item, action) int -hcreate (nel) - size_t nel; +hcreate (size_t nel) { return __hcreate_r (nel, &htab); } |