foxygit / doom Log in
commit a35f125fd08c1e3206fcc3258d0ac5f3ea9aa6e2
Author:     Fabian Greffrath <fabian@greffrath.com>
AuthorDate: Mon Oct 10 09:24:05 2016 +0200
Commit:     Fabian Greffrath <fabian@greffrath.com>
CommitDate: Mon Oct 10 09:24:05 2016 +0200

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

    Please note that this is not the same as <strings.h>.
---
 src/doomtype.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/doomtype.h b/src/doomtype.h
index 7415e09c..d2c28832 100644
--- a/src/doomtype.h
+++ b/src/doomtype.h
@@ -31,6 +31,7 @@

 #ifdef _WIN32

+#include <string.h>
 #define strcasecmp stricmp
 #define strncasecmp strnicmp