mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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:
parent
12f2c9c198
commit
68d6bb8af5
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue