Skip to content

Commit b3fca23

Browse files
authored
Added strings.h include to resolve strncasecmp on some systems (#393)
1 parent ad9cce3 commit b3fca23

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: cute_tiled.h

+1
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,7 @@ struct strpool_embedded_t
592592
#define STRPOOL_EMBEDDED_STRNICMP( s1, s2, len ) ( _strnicmp( s1, s2, len ) )
593593
#else
594594
#include <string.h>
595+
#include <strings.h>
595596
#define STRPOOL_EMBEDDED_STRNICMP( s1, s2, len ) ( strncasecmp( s1, s2, len ) )
596597
#endif
597598
#endif

0 commit comments

Comments
 (0)