diff options
Diffstat (limited to 'src/string/memset.c')
-rw-r--r-- | src/string/memset.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string/memset.c b/src/string/memset.c index f8c153a..df36052 100644 --- a/src/string/memset.c +++ b/src/string/memset.c @@ -29,7 +29,6 @@ */ void* memset(void* segment, int c, size_t size) { - /* TODO improve implementation of memset */ char* s = segment; while (size--) *s++ = (char)c; |