916d7cf9bd
Merge commit 'f6fdb5f55a88f73ef7bef45f50cf5878ceec9781'
8 lines
102 B
C
8 lines
102 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
#if defined(__x86_64__) && defined(__ILP32__)
|
|
puts("x32");
|
|
#endif
|
|
}
|