From c46b403f381d4c3bc54d886cb431533b8dfee7a0 Mon Sep 17 00:00:00 2001 From: millert <> Date: Sat, 14 Jun 1997 02:12:44 +0000 Subject: Fix decl for tfind(3) --- src/lib/libc/stdlib/tfind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 void * tfind(vkey, vrootp, compar) const void *vkey; /* key to be found */ - void **vrootp; /* address of the tree root */ + void *const *vrootp; /* address of the tree root */ int (*compar) __P((const void *, const void *)); { char *key = (char *)vkey; -- cgit v1.2.3-55-g6feb