git-subtree-dir: external/xbyak git-subtree-split: 9d8ff37306f39c6a71cf998078cbe880ce5dc224
9 lines
102 B
C
9 lines
102 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
#if defined(__x86_64__) && defined(__ILP32__)
|
|
puts("x32");
|
|
#endif
|
|
}
|