Browse Source

Fix broken prototype.

Manuel Novoa III 23 years ago
parent
commit
c886fc9109
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/search.h

+ 1 - 1
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,