Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / x86 / trivial_64bit_program.c
blob05c6a41b36717ef6380f17287ce7167ae4b32c48
1 /*
2 * Trivial program to check that we have a valid 64-bit build environment.
3 * Copyright (c) 2015 Andy Lutomirski
4 * GPL v2
5 */
7 #ifndef __x86_64__
8 # error wrong architecture
9 #endif
11 #include <stdio.h>
13 int main()
15 printf("\n");
17 return 0;