aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/memcpy.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-09-03 17:11:59 +0200
committerMattias Andrée <maandree@operamail.com>2015-09-03 17:11:59 +0200
commita18b1c30dc6ffb2b726d70e901057909e5815d1f (patch)
treebb7724fdb376a9354498218b46c19bc067bd8d8c /src/string/memcpy.c
parentadd printf functions, not fully implemented (diff)
downloadslibc-a18b1c30dc6ffb2b726d70e901057909e5815d1f.tar.gz
slibc-a18b1c30dc6ffb2b726d70e901057909e5815d1f.tar.bz2
slibc-a18b1c30dc6ffb2b726d70e901057909e5815d1f.tar.xz
remove some todos
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/string/memcpy.c')
-rw-r--r--src/string/memcpy.c1
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--)