summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-26 16:15:49 -0400
committerLioncash <mathew1800@gmail.com>2015-09-26 18:50:42 -0400
commit867df74b52cd03b1f82572d7870ca034476e7d89 (patch)
tree098bf6ef8409768b53f87a139a5c08220019746a /Source/Core
parent1d42db24398f7d94a6c9c641225d8088d203a3ea (diff)
Common: Remove strdup define
It's not used anywhere.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/Common.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Common/Common.h b/Source/Core/Common/Common.h
index 4a23e71c77..27427d3011 100644
--- a/Source/Core/Common/Common.h
+++ b/Source/Core/Common/Common.h
@@ -64,11 +64,9 @@ extern const char *netplay_dolphin_ver;
#endif
#ifdef _MSC_VER
-#define __strdup _strdup
#define __getcwd _getcwd
#define __chdir _chdir
#else
-#define __strdup strdup
#define __getcwd getcwd
#define __chdir chdir
#endif