summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorderaadt <>1998-11-22 07:41:04 +0000
committerderaadt <>1998-11-22 07:41:04 +0000
commit5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c (patch)
tree7c446bfc71fe3ceead2eeb5700ceb4d8f86ee59d /src
parentc1f295aa8666eb1c08a1edf944ac5617659a066c (diff)
downloadopenbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.tar.gz
openbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.tar.bz2
openbsd-5dc45f3e8b2cdfcaa9d8d3bfdffa113a769afb3c.zip
bad long
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/rand.c4
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)
35static char *rcsid = "$OpenBSD: rand.c,v 1.3 1998/11/20 11:18:50 d Exp $"; 35static 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
41static u_long next = 1; 41static u_int next = 1;
42 42
43int 43int
44rand_r(seed) 44rand_r(seed)