diff options
author | guenther <> | 2012-06-01 01:01:57 +0000 |
---|---|---|
committer | guenther <> | 2012-06-01 01:01:57 +0000 |
commit | cb798cd101f47ccce02cb08724d7b433ebbe041d (patch) | |
tree | c44cf1f141bee166cd7b0c3d7f0d5ee35f25540c /src/lib/libc/stdlib/random.c | |
parent | e07859e901fd418fd131e18bfe9b8bce64a0454d (diff) | |
download | openbsd-cb798cd101f47ccce02cb08724d7b433ebbe041d.tar.gz openbsd-cb798cd101f47ccce02cb08724d7b433ebbe041d.tar.bz2 openbsd-cb798cd101f47ccce02cb08724d7b433ebbe041d.zip |
Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(),
and valloc() are not in the current version, while posix_memalign() mkstemp(),
and mkdtemp() are, and setstate()'s argument has lost a bogus 'const'.
ok millert@ jmc@ espie@ kettenis@; ports build testing by naddy@
Diffstat (limited to 'src/lib/libc/stdlib/random.c')
-rw-r--r-- | src/lib/libc/stdlib/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 5a9a7c3313..9c5b9d0f3f 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: random.c,v 1.16 2012/03/21 12:36:49 millert Exp $ */ | 1 | /* $OpenBSD: random.c,v 1.17 2012/06/01 01:01:57 guenther Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1983 Regents of the University of California. | 3 | * Copyright (c) 1983 Regents of the University of California. |
4 | * All rights reserved. | 4 | * All rights reserved. |
@@ -326,7 +326,7 @@ initstate(u_int seed, char *arg_state, size_t n) | |||
326 | * Returns a pointer to the old state information. | 326 | * Returns a pointer to the old state information. |
327 | */ | 327 | */ |
328 | char * | 328 | char * |
329 | setstate(const char *arg_state) | 329 | setstate(char *arg_state) |
330 | { | 330 | { |
331 | int32_t *new_state = (int32_t *)arg_state; | 331 | int32_t *new_state = (int32_t *)arg_state; |
332 | int32_t type = new_state[0] % MAX_TYPES; | 332 | int32_t type = new_state[0] % MAX_TYPES; |