Implement APIC, RTC, basic ACPI parser and timer support
[lunaix-os.git] / lunaix-os / libs / libc / string / strlen.c
diff --git a/lunaix-os/libs/libc/string/strlen.c b/lunaix-os/libs/libc/string/strlen.c
deleted file mode 100644 (file)
index 8b26def..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <libc/string.h>
-
-size_t
-strlen(const char* str)
-{
-    size_t len = 0;
-    while (str[len])
-        len++;
-    return len;
-}
\ No newline at end of file