summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormillert <>1997-06-14 02:12:44 +0000
committermillert <>1997-06-14 02:12:44 +0000
commitc46b403f381d4c3bc54d886cb431533b8dfee7a0 (patch)
tree04fd39a1038a44e5891a638ba1373f4d59a4b73e
parentd2a9665ee3f4c59b81456a8d641a4f1e45bb2375 (diff)
downloadopenbsd-c46b403f381d4c3bc54d886cb431533b8dfee7a0.tar.gz
openbsd-c46b403f381d4c3bc54d886cb431533b8dfee7a0.tar.bz2
openbsd-c46b403f381d4c3bc54d886cb431533b8dfee7a0.zip
Fix decl for tfind(3)
-rw-r--r--src/lib/libc/stdlib/tfind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c
index 8e77527bf5..9e5bd4b0f2 100644
--- a/src/lib/libc/stdlib/tfind.c
+++ b/src/lib/libc/stdlib/tfind.c
@@ -21,7 +21,7 @@ typedef struct node_t
21void * 21void *
22tfind(vkey, vrootp, compar) 22tfind(vkey, vrootp, compar)
23 const void *vkey; /* key to be found */ 23 const void *vkey; /* key to be found */
24 void **vrootp; /* address of the tree root */ 24 void *const *vrootp; /* address of the tree root */
25 int (*compar) __P((const void *, const void *)); 25 int (*compar) __P((const void *, const void *));
26{ 26{
27 char *key = (char *)vkey; 27 char *key = (char *)vkey;