summaryrefslogtreecommitdiffstats
path: root/src/common/common_funcs.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-07 03:59:59 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-07 04:50:08 +0200
commitbf12f270b3c74f694c789a57cc69f414753ca080 (patch)
treea80e6ee9863a46966fe43496f1ccbbfa07cc98aa /src/common/common_funcs.h
parentClean-up includes (diff)
downloadyuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar.gz
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar.bz2
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar.lz
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar.xz
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.tar.zst
yuzu-bf12f270b3c74f694c789a57cc69f414753ca080.zip
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r--src/common/common_funcs.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index e76cb7d68..9e666d77e 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -73,16 +73,12 @@ inline u64 _rotr64(u64 x, unsigned int shift){
}
#else // _MSC_VER
-#include <locale.h>
+ #include <locale.h>
-// Function Cross-Compatibility
- #define strcasecmp _stricmp
- #define strncasecmp _strnicmp
- #define unlink _unlink
+ // Function Cross-Compatibility
#define snprintf _snprintf
- #define vscprintf _vscprintf
-// Locale Cross-Compatibility
+ // Locale Cross-Compatibility
#define locale_t _locale_t
#define freelocale _free_locale
#define newlocale(mask, locale, base) _create_locale(mask, locale)