aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib')
-rw-r--r--src/kernel/lib/lib.h2
-rw-r--r--src/kernel/lib/string.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h
index 6963498..de09e0f 100644
--- a/src/kernel/lib/lib.h
+++ b/src/kernel/lib/lib.h
@@ -14,7 +14,7 @@ size_t strlen(const char *str);
* Compare two strings
* @param s1 The first string pointer
* @param s2 The second string pointer
- * @return The length difference between s1 and s2
+ * @return Non-zero if not equal
*/
size_t strcmp(const char *s1, const char *s2);
diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c
index f9dfb99..0ca04ee 100644
--- a/src/kernel/lib/string.c
+++ b/src/kernel/lib/string.c
@@ -1,4 +1,5 @@
#include <stddef.h>
+#include "../io/io.h"
size_t strlen(const char *str) {
size_t len = 0;