10 lines
202 B
C++
10 lines
202 B
C++
#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
|