summaryrefslogtreecommitdiff
path: root/libkern
diff options
context:
space:
mode:
Diffstat (limited to 'libkern')
-rw-r--r--libkern/memmove.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libkern/memmove.c b/libkern/memmove.c
index a1455f51..5a1350e2 100644
--- a/libkern/memmove.c
+++ b/libkern/memmove.c
@@ -27,17 +27,3 @@ memmove(void *a1, void *a2, ulong n)
}
return a1;
}
-
-/*
-void
-memset(void *a1, int c, ulong n)
-{
- int m = (int)n;
- uchar *d;
-
- d = a1;
- while(--m >= 0)
- *d++ = c;
-}
-*/
-