mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-03-04 13:16:04 +00:00
8 lines
102 B
C
8 lines
102 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
#if defined(__x86_64__) && defined(__ILP32__)
|
|
puts("x32");
|
|
#endif
|
|
}
|