summaryrefslogtreecommitdiff
path: root/include/search.h
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-02-15 16:12:47 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-02-15 16:12:47 +0000
commitc886fc910989953d808e71535e04406a4e07b49d (patch)
treea26369061155046f1f54eb8cbd2ec19da41d404a /include/search.h
parent0ae38142235e61c53f0cabb13e2bc9d9e83707de (diff)
Fix broken prototype.
Diffstat (limited to 'include/search.h')
-rw-r--r--include/search.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/search.h b/include/search.h
index b3b498543..fa3e5c083 100644
--- a/include/search.h
+++ b/include/search.h
@@ -67,7 +67,7 @@ typedef enum { preorder, postorder, endorder, leaf } VISIT;
extern void *tsearch __P((__const void * __key, void **__rootp,
__compar_fn_t compar));
-extern void *tfind __P((__const void * __key, __const void ** __rootp,
+extern void *tfind __P((__const void * __key, void * __const * __rootp,
__compar_fn_t compar));
extern void *tdelete __P((__const void * __key, void ** __rootp,