summaryrefslogtreecommitdiff
path: root/05/string.h
diff options
context:
space:
mode:
Diffstat (limited to '05/string.h')
-rw-r--r--05/string.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/05/string.h b/05/string.h
index 1ea2a91..e585f6b 100644
--- a/05/string.h
+++ b/05/string.h
@@ -3,13 +3,6 @@
#include <stdc_common.h>
-void *memset(void *s, int c, size_t n) {
- char *p = s, *end = p + n;
- while (p < end)
- *p++ = c;
- return s;
-}
-
#endif // _STRING_H