Loading...
--- Libc/Libc-320/stdlib/FreeBSD/tfind.c
+++ Libc/Libc-1669.40.2/stdlib/FreeBSD/tfind.c
@@ -25,10 +25,8 @@
/* find a node, or return 0 */
void *
-tfind(vkey, vrootp, compar)
- const void *vkey; /* key to be found */
- void * const *vrootp; /* address of the tree root */
- int (*compar)(const void *, const void *);
+tfind(const void *vkey, void * const *vrootp,
+ int (*compar)(const void *, const void *))
{
node_t **rootp = (node_t **)vrootp;