summaryrefslogtreecommitdiff
path: root/src/porting.h
diff options
context:
space:
mode:
authorWeblate <42@minetest.ru>2013-02-08 16:29:19 +0100
committerWeblate <42@minetest.ru>2013-02-08 16:29:19 +0100
commita27857e9382fb65140748dbbefb73a463827d4d6 (patch)
tree72bf4dfbd030f04d94573d793aa150574eb9839d /src/porting.h
parent0cda2d5193a80b32d3cae8a54d5866cbd3308592 (diff)
parent9b2044351fb3a18e47eec01e9b574aa86485c101 (diff)
downloadminetest-a27857e9382fb65140748dbbefb73a463827d4d6.tar.gz
minetest-a27857e9382fb65140748dbbefb73a463827d4d6.tar.bz2
minetest-a27857e9382fb65140748dbbefb73a463827d4d6.zip
Merge remote branch 'origin/master'
Diffstat (limited to 'src/porting.h')
-rw-r--r--src/porting.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/porting.h b/src/porting.h
index c8d19154c..9ba3394bb 100644
--- a/src/porting.h
+++ b/src/porting.h
@@ -56,6 +56,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define strtof(x, y) (float)strtod(x, y)
#define strtoll(x, y, z) _strtoi64(x, y, z)
#define strtoull(x, y, z) _strtoui64(x, y, z)
+ #define strcasecmp(x, y) stricmp(x, y)
#else
#define ALIGNOF(x) __alignof__(x)
#endif