1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
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

@ -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