mistake in wcstombs(3)

Andy Koppe andy.koppe@gmail.com
Mon Aug 10 16:47:00 GMT 2009


The wcstombs man page has a const in the wrong place:

 int wcstombs(const char *S, wchar_t *PWC, size_t N);

should be

 int wcstombs(char *S, const wchar_t *PWC, size_t N);

Andy



More information about the Newlib mailing list