aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/string/strstr.c')
-rw-r--r--src/kernel/lib/string/strstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/string/strstr.c b/src/kernel/lib/string/strstr.c
index d58b4d5..bcf1539 100644
--- a/src/kernel/lib/string/strstr.c
+++ b/src/kernel/lib/string/strstr.c
@@ -1,10 +1,10 @@
#include <stdint.h>
-#include <kernel/lib/stdlib.h>
+#include <lib/stdlib.h>
char *strstr(const char *in, const char *str)
{
char c;
- uint32_t len;
+ u32 len;
c = *str++;
if (!c)