reactos/include/crt/intrin.h
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

13 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