aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/search/tsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/search/tsearch.c')
-rw-r--r--newlib/libc/search/tsearch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/search/tsearch.c b/newlib/libc/search/tsearch.c
index 5f41b40..8fe2657 100644
--- a/newlib/libc/search/tsearch.c
+++ b/newlib/libc/search/tsearch.c
@@ -26,8 +26,8 @@ __RCSID("$NetBSD: tsearch.c,v 1.3 1999/09/16 11:45:37 lukem Exp $");
/* find or insert datum into search tree */
void *
_DEFUN(tsearch, (vkey, vrootp, compar),
- const void *vkey _AND /* key to be located */
- void **vrootp _AND /* address of tree root */
+ const void *vkey, /* key to be located */
+ void **vrootp, /* address of tree root */
int (*compar)(const void *, const void *))
{
node_t *q;