]> git.buserror.net Git - polintos/scott/priv.git/blobdiff - include/c/std/string.h
Fix typo in memset arg name.
[polintos/scott/priv.git] / include / c / std / string.h
index 55261598682edaab7723d28170600185347d8657..6c2f4c9becdec0dfa6c69f3e2919caa3cb1e5c83 100644 (file)
@@ -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);