Skip to content
Snippets Groups Projects
Commit 6cfcbede authored by Brad King's avatar Brad King
Browse files

SystemTools: Include strings.h on MinGW for strcasecmp

Change-Id: I7b5d0b0edb756989d84d7291467256ad48004398
parent 80f820fc
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,10 @@
#include <sys/stat.h>
#include <time.h>
#if defined(_WIN32) && !defined(_MSC_VER) && defined(__GNUC__)
# include <strings.h> /* for strcasecmp */
#endif
#ifdef _MSC_VER
# define umask _umask // Note this is still umask on Borland
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment