<strings.h> is not defined on Win32 systems
This commit is contained in:
@@ -30,7 +30,11 @@
|
|||||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <strings.h> /*for strcasecmp */
|
#if defined(__WIN32__) || defined(WIN32) || defined(_WIN32)
|
||||||
|
#include <string.h>
|
||||||
|
#else
|
||||||
|
#include <strings.h> /*for strcasecmp */
|
||||||
|
#endif
|
||||||
#include <DNA_text_types.h>
|
#include <DNA_text_types.h>
|
||||||
#include <MEM_guardedalloc.h>
|
#include <MEM_guardedalloc.h>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user