summaryrefslogtreecommitdiff
path: root/lib/libc/string/strnlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/strnlen.c')
-rw-r--r--lib/libc/string/strnlen.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/string/strnlen.c b/lib/libc/string/strnlen.c
index 2dc7b4fb326..a5e13ae04e2 100644
--- a/lib/libc/string/strnlen.c
+++ b/lib/libc/string/strnlen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: strnlen.c,v 1.3 2010/06/02 12:58:12 millert Exp $ */
+/* $OpenBSD: strnlen.c,v 1.4 2012/04/26 01:22:31 matthew Exp $ */
/*
* Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -18,7 +18,11 @@
#include <sys/types.h>
+#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
size_t
strnlen(const char *str, size_t maxlen)