diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-02-24 22:01:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-02-24 22:01:04 +0000 |
commit | 691ca5658ea71f2087fad18d8624b8648e460c73 (patch) | |
tree | 85663029af5c9740d7265da7b3cbff917f1be2c5 | |
parent | 8f369e0d1447d9c0e3a7a350311b73552fa11a94 (diff) | |
download | glibc-691ca5658ea71f2087fad18d8624b8648e460c73.tar glibc-691ca5658ea71f2087fad18d8624b8648e460c73.tar.gz glibc-691ca5658ea71f2087fad18d8624b8648e460c73.tar.bz2 glibc-691ca5658ea71f2087fad18d8624b8648e460c73.zip |
Update.
2000-02-24 Ulrich Drepper <drepper@redhat.com>
* stdlib/stdlib.h (setstate): Don't mark argument as const (yet).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | stdlib/stdlib.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. 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 |