Loading...
stdlib/FreeBSD/tfind.c Libc-1725.40.4 Libc-583
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/tfind.c
+++ Libc/Libc-583/stdlib/FreeBSD/tfind.c
@@ -25,8 +25,10 @@
 
 /* find a node, or return 0 */
 void *
-tfind(const void *vkey, void * const *vrootp,
-    int (*compar)(const void *, const 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 *);
 {
 	node_t **rootp = (node_t **)vrootp;