From cb798cd101f47ccce02cb08724d7b433ebbe041d Mon Sep 17 00:00:00 2001 From: guenther <> Date: Fri, 1 Jun 2012 01:01:57 +0000 Subject: 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@ --- src/lib/libc/stdlib/ecvt.3 | 9 ++++++--- src/lib/libc/stdlib/random.3 | 6 +++--- src/lib/libc/stdlib/random.c | 4 ++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/lib/libc/stdlib/ecvt.3 b/src/lib/libc/stdlib/ecvt.3 index 2f107e11fd..0191a3420e 100644 --- a/src/lib/libc/stdlib/ecvt.3 +++ b/src/lib/libc/stdlib/ecvt.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ecvt.3,v 1.9 2010/04/01 17:06:55 jmc Exp $ +.\" $OpenBSD: ecvt.3,v 1.10 2012/06/01 01:01:57 guenther Exp $ .\" .\" Copyright (c) 2002 Todd C. Miller .\" @@ -18,7 +18,7 @@ .\" Agency (DARPA) and Air Force Research Laboratory, Air Force .\" Materiel Command, USAF, under agreement number F39502-99-1-0512. .\" -.Dd $Mdocdate: April 1 2010 $ +.Dd $Mdocdate: June 1 2012 $ .Dt ECVT 3 .Os .Sh NAME @@ -148,7 +148,10 @@ The and .Fn gcvt functions conform to -.St -p1003.1-2001 . +.St -p1003.1-2001 ; +as of +.St -p1003.1-2008 +they are no longer a part of the standard. .Sh CAVEATS The .Fn ecvt diff --git a/src/lib/libc/stdlib/random.3 b/src/lib/libc/stdlib/random.3 index ed05df162b..84756bb3e3 100644 --- a/src/lib/libc/stdlib/random.3 +++ b/src/lib/libc/stdlib/random.3 @@ -25,9 +25,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: random.3,v 1.19 2007/05/31 19:19:31 jmc Exp $ +.\" $OpenBSD: random.3,v 1.20 2012/06/01 01:01:57 guenther Exp $ .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: June 1 2012 $ .Dt RANDOM 3 .Os .Sh NAME @@ -48,7 +48,7 @@ .Ft char * .Fn initstate "unsigned int seed" "char *state" "size_t n" .Ft char * -.Fn setstate "const char *state" +.Fn setstate "char *state" .Sh DESCRIPTION The .Fn random 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 @@ -/* $OpenBSD: random.c,v 1.16 2012/03/21 12:36:49 millert Exp $ */ +/* $OpenBSD: random.c,v 1.17 2012/06/01 01:01:57 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. @@ -326,7 +326,7 @@ initstate(u_int seed, char *arg_state, size_t n) * Returns a pointer to the old state information. */ char * -setstate(const char *arg_state) +setstate(char *arg_state) { int32_t *new_state = (int32_t *)arg_state; int32_t type = new_state[0] % MAX_TYPES; -- cgit v1.2.3-55-g6feb