aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/detect_x32.c
blob: 549b8d505c80cb3363b3f9c1a5d21d37c8b80a4e (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
#if defined(__x86_64__) && defined(__ILP32__)
	puts("x32");
#endif
}