mirror of
https://github.com/RPCSX/xbyak.git
synced 2024-11-23 11:29:53 +00:00
9 lines
102 B
C
9 lines
102 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
#if defined(__x86_64__) && defined(__ILP32__)
|
|
puts("x32");
|
|
#endif
|
|
}
|