Change _MSC_VER conditions to _WIN32 conditions in stubs

This commit is contained in:
Hugh Bellamy
2016-12-12 23:48:16 +00:00
parent ca165e5c4a
commit eca5b3da34
5 changed files with 21 additions and 21 deletions

View File

@@ -19,7 +19,7 @@
#define SWIFT_BASIC_MALLOC_H
#include <cassert>
#if defined(_MSC_VER)
#if defined(_WIN32)
#include <malloc.h>
#else
#include <cstdlib>