Loading...
stdlib/FreeBSD/rand.c Libc-1725.40.4 Libc-997.90.3
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/rand.c
+++ Libc/Libc-997.90.3/stdlib/FreeBSD/rand.c
@@ -95,13 +95,14 @@
 static u_long next = 1;
 
 int
-rand(void)
+rand()
 {
 	return (do_rand(&next));
 }
 
 void
-srand(u_int seed)
+srand(seed)
+u_int seed;
 {
 	next = seed;
 }