diff options
Diffstat (limited to 'openbsd-compat/strnlen.c')
-rw-r--r-- | openbsd-compat/strnlen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/strnlen.c b/openbsd-compat/strnlen.c index 93d51559..7ad3573a 100644 --- a/openbsd-compat/strnlen.c +++ b/openbsd-compat/strnlen.c @@ -18,8 +18,8 @@ /* OPENBSD ORIGINAL: lib/libc/string/strnlen.c */ -#include "config.h" -#ifndef HAVE_STRNLEN +#include "includes.h" +#if !defined(HAVE_STRNLEN) || defined(BROKEN_STRNLEN) #include <sys/types.h> #include <string.h> |