diff options
Diffstat (limited to 'src/string/memmove.c')
-rw-r--r-- | src/string/memmove.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string/memmove.c b/src/string/memmove.c index c721609..0acc47b 100644 --- a/src/string/memmove.c +++ b/src/string/memmove.c @@ -29,7 +29,6 @@ */ void* memmove(void* whither, const void* whence, size_t size) { - /* TODO improve implementation of memcpy */ char* d = whither; const char* s = whence; if ((size_t)(d - s) < size) |