summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/stdlib.h4
-rw-r--r--lib/libc/stdlib/random.34
-rw-r--r--lib/libc/stdlib/random.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index d2205f52d48..2d25366c095 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.5 1997/12/09 13:32:36 deraadt Exp $ */
+/* $OpenBSD: stdlib.h,v 1.6 1998/02/06 01:49:06 deraadt Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -166,7 +166,7 @@ int radixsort __P((const unsigned char **, int, const unsigned char *,
int sradixsort __P((const unsigned char **, int, const unsigned char *,
unsigned));
-char *initstate __P((unsigned, char *, int));
+char *initstate __P((unsigned, char *, size_t));
long random __P((void));
char *realpath __P((const char *, char *));
char *setstate __P((char *));
diff --git a/lib/libc/stdlib/random.3 b/lib/libc/stdlib/random.3
index 6188c2a4318..87a4fe253fa 100644
--- a/lib/libc/stdlib/random.3
+++ b/lib/libc/stdlib/random.3
@@ -29,7 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $OpenBSD: random.3,v 1.3 1996/08/19 08:33:46 tholo Exp $
+.\" $OpenBSD: random.3,v 1.4 1998/02/06 01:49:08 deraadt Exp $
.\"
.Dd April 19, 1991
.Dt RANDOM 3
@@ -47,7 +47,7 @@
.Ft void
.Fn srandom "unsigned seed"
.Ft char *
-.Fn initstate "unsigned seed" "char *state" "int n"
+.Fn initstate "unsigned seed" "char *state" "size_t n"
.Ft char *
.Fn setstate "char *state"
.Sh DESCRIPTION
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 46b67b5ec76..1ac61f2cec8 100644
--- a/lib/libc/stdlib/random.c
+++ b/lib/libc/stdlib/random.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: random.c,v 1.4 1996/09/15 09:31:51 tholo Exp $";
+static char *rcsid = "$OpenBSD: random.c,v 1.5 1998/02/06 01:49:08 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
@@ -242,7 +242,7 @@ char *
initstate(seed, arg_state, n)
u_int seed; /* seed for R.N.G. */
char *arg_state; /* pointer to state array */
- int n; /* # bytes of state info */
+ size_t n; /* # bytes of state info */
{
register char *ostate = (char *)(&state[-1]);