X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=blobdiff_plain;f=include%2Fc%2Fstd%2Fstring.h;h=6c2f4c9becdec0dfa6c69f3e2919caa3cb1e5c83;hp=55261598682edaab7723d28170600185347d8657;hb=43144347afc26dd4ebcf8c56579c8225d9bcbb16;hpb=64d446aca2b66fc7ec07e116e26dcd1678cc8126 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);