summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/random.c
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>1998-10-19 15:52:37 +0000
committerkleink <kleink@NetBSD.org>1998-10-19 15:52:37 +0000
commit2cf006181e56b8a823e902563dec657850bf6459 (patch)
treee78813e07a592d05f628e6bffcb9f636ada8bf00 /lib/libc/stdlib/random.c
parentb32187bfe9b1627ce5344fd09442c8e7db8fc48b (diff)
Slight formatting glitch.
Diffstat (limited to 'lib/libc/stdlib/random.c')
-rw-r--r--lib/libc/stdlib/random.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 3fc640e88de..8e162be334c 100644
--- a/lib/libc/stdlib/random.c
+++ b/lib/libc/stdlib/random.c
@@ -1,4 +1,4 @@
-/* $NetBSD: random.c,v 1.14 1998/09/09 19:34:00 kleink Exp $ */
+/* $NetBSD: random.c,v 1.15 1998/10/19 15:52:37 kleink Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)random.c 8.2 (Berkeley) 5/19/95";
#else
-__RCSID("$NetBSD: random.c,v 1.14 1998/09/09 19:34:00 kleink Exp $");
+__RCSID("$NetBSD: random.c,v 1.15 1998/10/19 15:52:37 kleink Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -290,7 +290,7 @@ char *
initstate(seed, arg_state, n)
unsigned long seed; /* seed for R.N.G. */
char *arg_state; /* pointer to state array */
- size_t n; /* # bytes of state info */
+ size_t n; /* # bytes of state info */
{
void *ostate = (void *)(&state[-1]);
long *long_arg_state = (long *) arg_state;