From 867df74b52cd03b1f82572d7870ca034476e7d89 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 26 Sep 2015 16:15:49 -0400 Subject: [PATCH] Common: Remove strdup define It's not used anywhere. --- Source/Core/Common/Common.h | 2 -- 1 file changed, 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