From b3b5e20014417daec3d7985162a1115071d974a9 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Tue, 17 Jan 2017 21:52:17 +0100 Subject: [PATCH] Add for strn[case]cmp. Apparently, is a POSIX header that's completely distinct from the ISO C header. MingW is the only purist here, which doesn't include one from the other, thereby causing "implicit declaration of strncasecmp" warnings. See also the Single Unix Spec: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/strings.h.html --- runtime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime.c b/runtime.c index d9ee000..78f2f9b 100644 --- a/runtime.c +++ b/runtime.c @@ -32,6 +32,7 @@ #include #include #include +#include #ifdef HAVE_SYSEXITS_H # include -- 2.1.4