From: Scott Wood Date: Sun, 9 Dec 2007 23:52:35 +0000 (-0600) Subject: Fix typo in memset arg name. X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=commitdiff_plain;h=43144347afc26dd4ebcf8c56579c8225d9bcbb16;hp=64d446aca2b66fc7ec07e116e26dcd1678cc8126 Fix typo in memset arg name. --- diff --git a/include/c/std/string.h b/include/c/std/string.h index 5526159..6c2f4c9 100644 --- a/include/c/std/string.h +++ b/include/c/std/string.h @@ -10,7 +10,7 @@ extern "C" { void *memcpy(void *dest, const void *src, size_t len); void *memmove(void *dest, const void *src, size_t len); int memcmp(const void *b1, const void *b2, size_t len); - void *memset(void *block, int count, size_t len); + void *memset(void *block, int c, size_t len); size_t strnlen(const char *s, size_t n); size_t strlen(const char *s); char *strcpy(char *dest, const char *src);