diff options
author | ache <ache@FreeBSD.org> | 1997-03-17 16:27:16 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-17 16:27:16 +0000 |
commit | 30ee004f83abc3d073d9982fe612b8c57e74a03f (patch) | |
tree | 8d2ade0a00b2b91b8efae9ec51d8a0e48f476a69 /lib/libc/stdlib | |
parent | 15ac7eb201136f89843384b6d20b2f86ed77bcb8 (diff) | |
download | FreeBSD-src-30ee004f83abc3d073d9982fe612b8c57e74a03f.zip FreeBSD-src-30ee004f83abc3d073d9982fe612b8c57e74a03f.tar.gz |
Fix arg types to match Lite2
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/random.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/random.3 b/lib/libc/stdlib/random.3 index dd85711..727069c 100644 --- a/lib/libc/stdlib/random.3 +++ b/lib/libc/stdlib/random.3 @@ -45,9 +45,9 @@ .Ft long .Fn random void .Ft void -.Fn srandom "unsigned seed" +.Fn srandom "unsigned long seed" .Ft char * -.Fn initstate "unsigned seed" "char *state" "int n" +.Fn initstate "unsigned long seed" "char *state" "long n" .Ft char * .Fn setstate "char *state" .Sh DESCRIPTION |