1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-29 04:20:29 +00:00

Fixed platform/strings.h to work again on Linux

This commit is contained in:
Nicolay Korslund 2010-06-28 11:45:42 +02:00
parent a26641cca1
commit 5005f5eb06
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
screenshot*.png screenshot*.png
*.o *.o
*.a
*~ *~
data data
CMakeFiles CMakeFiles

View File

@ -6,6 +6,8 @@
#pragma warning(disable: 4996) #pragma warning(disable: 4996)
#define strcasecmp stricmp #define strcasecmp stricmp
#define snprintf _snprintf #define snprintf _snprintf
#else
#include <strings.h>
#endif #endif
#endif #endif