reactos/reactos/include/crt/intrin.h
Amine Khaldi 0ba1b34e24 [INCLUDE/CRT]
* 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
2013-12-27 23:35:30 +00:00

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