diff options
author | deraadt <> | 1998-11-22 07:41:04 +0000 |
---|---|---|
committer | deraadt <> | 1998-11-22 07:41:04 +0000 |
commit | 5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c (patch) | |
tree | 7c446bfc71fe3ceead2eeb5700ceb4d8f86ee59d /src | |
parent | c1f295aa8666eb1c08a1edf944ac5617659a066c (diff) | |
download | openbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.tar.gz openbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.tar.bz2 openbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.zip |
bad long
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/rand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index 61fb66e5ec..797d3b2848 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c | |||
@@ -32,13 +32,13 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | static char *rcsid = "$OpenBSD: rand.c,v 1.3 1998/11/20 11:18:50 d Exp $"; | 35 | static char *rcsid = "$OpenBSD: rand.c,v 1.4 1998/11/22 07:41:04 deraadt Exp $"; |
36 | #endif /* LIBC_SCCS and not lint */ | 36 | #endif /* LIBC_SCCS and not lint */ |
37 | 37 | ||
38 | #include <sys/types.h> | 38 | #include <sys/types.h> |
39 | #include <stdlib.h> | 39 | #include <stdlib.h> |
40 | 40 | ||
41 | static u_long next = 1; | 41 | static u_int next = 1; |
42 | 42 | ||
43 | int | 43 | int |
44 | rand_r(seed) | 44 | rand_r(seed) |