From e2fd1c0fe39d83ecdee1e0c6359a299f0afad13b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 2 Jan 2016 11:17:06 -0800 Subject: [PATCH] Backed out commit 80ce90dbc266, this causes Visual Studio build failure on buildbot --- src/stdlib/SDL_stdlib.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/stdlib/SDL_stdlib.c b/src/stdlib/SDL_stdlib.c index 85872e255bbef..f11f65d644f02 100644 --- a/src/stdlib/SDL_stdlib.c +++ b/src/stdlib/SDL_stdlib.c @@ -275,11 +275,8 @@ int SDL_tolower(int x) { return ((x) >= 'A') && ((x) <= 'Z') ? ('a'+((x)-'A')) : #ifndef __FLTUSED__ #define __FLTUSED__ -/* the multithreaded runtime already includes libcmt.lib - and this symbol is in there. */ -#ifndef _MT __declspec(selectany) int _fltused = 1; #endif -#endif /* The optimizer on Visual Studio 2005 and later generates memcpy() calls */ #if (_MSC_VER >= 1400) && defined(_WIN64) && !defined(_DEBUG)