From 43144347afc26dd4ebcf8c56579c8225d9bcbb16 Mon Sep 17 00:00:00 2001 From: Scott Wood Date: Sun, 9 Dec 2007 17:52:35 -0600 Subject: [PATCH] Fix typo in memset arg name. --- include/c/std/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2