diff options
Diffstat (limited to 'newlib/libc/search/hcreate.c')
-rw-r--r-- | newlib/libc/search/hcreate.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/newlib/libc/search/hcreate.c b/newlib/libc/search/hcreate.c index 5472de1..7664353 100644 --- a/newlib/libc/search/hcreate.c +++ b/newlib/libc/search/hcreate.c @@ -57,7 +57,7 @@ __RCSID("$NetBSD: hcreate.c,v 1.2 2001/02/19 21:26:04 ross Exp $"); static struct hsearch_data htab; int -_DEFUN(hcreate, (nel), size_t nel) +hcreate (size_t nel) { return hcreate_r (nel, &htab); } @@ -69,8 +69,7 @@ hdestroy (void) } ENTRY * -_DEFUN(hsearch, (item, action), - ENTRY item, +hsearch (ENTRY item, ACTION action) { ENTRY *retval; |