Files
Lucina3DS/externals/xbyak/test/detect_x32.c
2025-02-06 22:24:29 +08:00

9 lines
102 B
C

#include <stdio.h>
int main()
{
#if defined(__x86_64__) && defined(__ILP32__)
puts("x32");
#endif
}