summaryrefslogtreecommitdiff
path: root/src/porting.h
diff options
context:
space:
mode:
authorkwolekr <mirrorisim@gmail.com>2013-02-05 15:01:33 -0500
committerkwolekr <mirrorisim@gmail.com>2013-02-06 16:52:48 -0500
commit97260d09a8e658b6ded7d9100b0aa1040fcfe50f (patch)
tree4ca603bb61d133b21ffe17d44d3a33589be28766 /src/porting.h
parentf148ae58c3c0e2b6d6c22c913492193021cbc4c3 (diff)
downloadminetest-97260d09a8e658b6ded7d9100b0aa1040fcfe50f.tar.gz
minetest-97260d09a8e658b6ded7d9100b0aa1040fcfe50f.tar.bz2
minetest-97260d09a8e658b6ded7d9100b0aa1040fcfe50f.zip
Add flag string settings, flat map option
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