aboutsummaryrefslogtreecommitdiff
path: root/kernel/lib/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/lib/stdlib.c')
-rw-r--r--kernel/lib/stdlib.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/lib/stdlib.c b/kernel/lib/stdlib.c
deleted file mode 100644
index 6710da2..0000000
--- a/kernel/lib/stdlib.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stdlib.h>
-
-size_t strlen(const char* str) {
- size_t ret = 0;
- while (str[ret] != 0)
- ret++;
- return ret;
-}