diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c index 18babbae841..0928a86e60a 100644 --- a/lib/libc/stdlib/random.c +++ b/lib/libc/stdlib/random.c @@ -190,7 +190,7 @@ static long *end_ptr = &randtbl[DEG_3 + 1]; */ void srandom(x) - u_int x; + unsigned int x; { register int i, j; @@ -229,7 +229,7 @@ srandom(x) */ char * initstate(seed, arg_state, n) - u_int seed; /* seed for R.N.G. */ + unsigned int seed; /* seed for R.N.G. */ char *arg_state; /* pointer to state array */ int n; /* # bytes of state info */ {