<strings.h> is not defined on Win32 systems

This commit is contained in:
2005-02-12 17:11:57 +00:00
parent 4bd1fe7eab
commit bc3329e49f

View File

@@ -30,7 +30,11 @@
* ***** 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 <MEM_guardedalloc.h>