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:
parent
70bff2d503
commit
676ae29038
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue