diff options
Diffstat (limited to 'newlib/libc/search/tfind.c')
-rw-r--r-- | newlib/libc/search/tfind.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/search/tfind.c b/newlib/libc/search/tfind.c index 36c90a1cd..5d7c40c93 100644 --- a/newlib/libc/search/tfind.c +++ b/newlib/libc/search/tfind.c @@ -25,10 +25,10 @@ __RCSID("$NetBSD: tfind.c,v 1.2 1999/09/16 11:45:37 lukem Exp $"); /* find a node, or return 0 */ void * -tfind(vkey, vrootp, compar) - const void *vkey; /* key to be found */ - void **vrootp; /* address of the tree root */ - int (*compar)(const void *, const void *); +_DEFUN(tfind, (vkey, vrootp, compar), + const void *vkey _AND /* key to be found */ + void **vrootp _AND /* address of the tree root */ + int (*compar)(const void *, const void *)) { node_t **rootp = (node_t **)vrootp; |