shithub: choc

Download patch

ref: a35f125fd08c1e3206fcc3258d0ac5f3ea9aa6e2
parent: 54dac5a281b58cec5d96bbf3428e4dbdc8380c0f
author: Fabian Greffrath <fabian@greffrath.com>
date: Mon Oct 10 05:24:05 EDT 2016

doomtype.h: include <string.h> for declaration of stricmp() on _WIN32 systems

Please note that this is not the same as <strings.h>.

--- a/src/doomtype.h
+++ b/src/doomtype.h
@@ -31,6 +31,7 @@
 
 #ifdef _WIN32
 
+#include <string.h>
 #define strcasecmp stricmp
 #define strncasecmp strnicmp