diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2008-05-27 18:44:40 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2008-05-27 18:44:40 +0000 |
commit | 676ae29038b2f0585f75a74d2ba2a1acc559aa7b (patch) | |
tree | 09d087fa060fe78e026da7dfc9a37ce8e9bf6662 /newlib/libc | |
parent | 70bff2d5033567544fa1970b02699060974b2d70 (diff) | |
download | cygnal-676ae29038b2f0585f75a74d2ba2a1acc559aa7b.tar.gz cygnal-676ae29038b2f0585f75a74d2ba2a1acc559aa7b.tar.bz2 cygnal-676ae29038b2f0585f75a74d2ba2a1acc559aa7b.zip |
2008-05-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/memset.c: Fix documented prototype to remove
erroneous const attribute on first parameter.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/string/memset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/memset.c b/newlib/libc/string/memset.c index 8dbb5f85d..55d2ce180 100644 --- a/newlib/libc/string/memset.c +++ b/newlib/libc/string/memset.c @@ -7,7 +7,7 @@ INDEX ANSI_SYNOPSIS #include <string.h> - void *memset(const void *<[dst]>, int <[c]>, size_t <[length]>); + void *memset(void *<[dst]>, int <[c]>, size_t <[length]>); TRAD_SYNOPSIS #include <string.h> |