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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/lib/string/strstr.c b/src/kernel/lib/string/strstr.c
index bcf1539..720df8c 100644
--- a/src/kernel/lib/string/strstr.c
+++ b/src/kernel/lib/string/strstr.c
@@ -1,5 +1,5 @@
-#include <stdint.h>
#include <lib/stdlib.h>
+#include <stdint.h>
char *strstr(const char *in, const char *str)
{