summaryrefslogtreecommitdiff
path: root/uisimulator/win32/string-win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/string-win32.c')
-rw-r--r--uisimulator/win32/string-win32.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/uisimulator/win32/string-win32.c b/uisimulator/win32/string-win32.c
index 9e10f0ed66..bf81fd1839 100644
--- a/uisimulator/win32/string-win32.c
+++ b/uisimulator/win32/string-win32.c
@@ -17,6 +17,8 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#ifndef __MINGW32__
21
20#include <string.h> 22#include <string.h>
21 23
22int strcasecmp (const char *a, const char *b) 24int strcasecmp (const char *a, const char *b)
@@ -27,4 +29,6 @@ int strcasecmp (const char *a, const char *b)
27int strncasecmp (const char *a, const char *b) 29int strncasecmp (const char *a, const char *b)
28{ 30{
29 return strcmpi (a, b); 31 return strcmpi (a, b);
30} \ No newline at end of file 32}
33
34#endif