memset() manpage prototype error

Howland Craig D (Craig) howland@LGSInnovations.com
Tue May 27 18:46:00 GMT 2008


The ANSI_SYNOPSIS in memset.c says (at least for 1.16.0):
 
void *memset(const void *<[dst]>, int <[c]>, size_t <[length]>);
 
The const for dst is in error.  This error is (obviously) only in the
comment and the man page.  The line should read
 
void *memset(void *<[dst]>, int <[c]>, size_t <[length]>);
 
Craig Howland



More information about the Newlib mailing list