2000-02-24  Ulrich Drepper  <drepper@redhat.com>

	* stdlib/stdlib.h (setstate): Don't mark argument as const (yet).
This commit is contained in:
Ulrich Drepper 2000-02-24 22:01:04 +00:00
parent 8f369e0d14
commit 691ca5658e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-02-24 Ulrich Drepper <drepper@redhat.com>
* stdlib/stdlib.h (setstate): Don't mark argument as const (yet).
2000-02-24 Andreas Jaeger <aj@suse.de>
* include/stdlib.h: Fix prototypes of __initstate and __setstate.

View file

@ -410,7 +410,7 @@ extern char *initstate (unsigned int __seed, char *__statebuf,
/* Switch the random number generator to state buffer STATEBUF,
which should have been previously initialized by `initstate'. */
extern char *setstate (__const char *__statebuf) __THROW;
extern char *setstate (char *__statebuf) __THROW;
# ifdef __USE_MISC