mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00

* Don't use __MINGW32__ because of some stupid 3rd party code setup of ours (I'm looking at you, libxml2). * Fixes MSVC build. svn path=/trunk/; revision=61454
12 lines
270 B
C
12 lines
270 B
C
|
|
#pragma once
|
|
|
|
#ifndef RC_INVOKED
|
|
#if defined(__GNUC__) && defined(_WIN32) // We can't use __MINGW32__ here
|
|
# include "mingw32/intrin.h"
|
|
#elif defined(_MSC_VER)
|
|
# include "msc/intrin.h"
|
|
#else
|
|
# error Please implement intrinsics for your target compiler
|
|
#endif
|
|
#endif
|