lsnes/include/library/arch-detect.hpp

11 lines
202 B
C++
Raw Permalink Normal View History

2013-10-28 15:37:24 +02:00
#ifndef _library__archdetect__hpp__included__
#define _library__archdetect__hpp__included__
#if defined(__i386__) || defined(__x86_64__)
#ifndef ARCH_IS_I386
#define ARCH_IS_I386
#endif
#endif
#endif