2008-05-27 Jeff Johnston <jjohnstn@redhat.com>

* libc/string/memset.c: Fix documented prototype to remove
        erroneous const attribute on first parameter.
This commit is contained in:
Jeff Johnston 2008-05-27 18:44:40 +00:00
parent 70bff2d503
commit 676ae29038
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-05-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/memset.c: Fix documented prototype to remove
erroneous const attribute on first parameter.
2008-05-26 Eric Blake <ebb9@byu.net>
Optimize the generic and x86 memchr.

View File

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