summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/tfind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/tfind.c')
-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 9e5bd4b0f2..5c3b8c17f5 100644
--- a/src/lib/libc/stdlib/tfind.c
+++ b/src/lib/libc/stdlib/tfind.c
@@ -22,7 +22,7 @@ void *
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 *const *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)(const void *, const void *);
26{ 26{
27 char *key = (char *)vkey; 27 char *key = (char *)vkey;
28 node **rootp = (node **)vrootp; 28 node **rootp = (node **)vrootp;