reactos/include/crt/intrin.h
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +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