diff options
Diffstat (limited to 'src/string/memcpy.c')
-rw-r--r-- | src/string/memcpy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string/memcpy.c b/src/string/memcpy.c index 02479cd..54482fb 100644 --- a/src/string/memcpy.c +++ b/src/string/memcpy.c @@ -32,7 +32,6 @@ */ void* memcpy(void* restrict whither, const void* restrict whence, size_t size) { - /* TODO improve implementation of memcpy */ char* d = whither; char* s = whence; while (size--) |