summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-24 22:01:04 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-24 22:01:04 +0000
commit691ca5658ea71f2087fad18d8624b8648e460c73 (patch)
tree85663029af5c9740d7265da7b3cbff917f1be2c5 /stdlib
parent8f369e0d1447d9c0e3a7a350311b73552fa11a94 (diff)
Update.
2000-02-24 Ulrich Drepper <drepper@redhat.com> * stdlib/stdlib.h (setstate): Don't mark argument as const (yet).
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index 8829106446..8857f35a20 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -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