Fix clang Windows build. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@5873 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-09-17 19:58:03 +00:00
parent 12f2c9c198
commit 68d6bb8af5
1 changed files with 4 additions and 0 deletions

View File

@ -56,8 +56,12 @@ static __inline int32_t _lrotl(int32_t i, int sh) { return (i >> (-sh)) | (i <<
#define _fileno fileno
#else
#include <io.h>
#ifdef __clang__
#include <emmintrin.h>
#else
#include <intrin.h>
#endif
#endif
#if defined(_WIN32)
#define WIN32_LEAN_AND_MEAN