aboutsummaryrefslogtreecommitdiff
path: root/lib/stdlib/memset.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib/memset.c')
-rw-r--r--lib/stdlib/memset.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/stdlib/memset.c b/lib/stdlib/memset.c
deleted file mode 100644
index a16bd05..0000000
--- a/lib/stdlib/memset.c
+++ /dev/null
@@ -1,7 +0,0 @@
-void *
-memset(void *s, int c, long unsigned n)
-{
- char *pDest = (char *)s;
- for (unsigned i = 0; i < n; ++i) pDest[i] = (char)c;
- return s;
-}