summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1994-09-05 13:26:40 +0000
committerBruce Evans <bde@FreeBSD.org>1994-09-05 13:26:40 +0000
commit7e80dad5c633682428312239a6a33acd0c7fa451 (patch)
treeec1e010c059637518d007df030eb0bd039186f1f /lib/libc
parentc33a3f955c0ae1e3bb061e01e83b69ba1115ea34 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 18babbae8412..0928a86e60ae 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 */
{