Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[sfrench/cifs-2.6.git] / tools / testing / selftests / x86 / trivial_32bit_program.c
1 /*
2  * Trivial program to check that we have a valid 32-bit build environment.
3  * Copyright (c) 2015 Andy Lutomirski
4  * GPL v2
5  */
6
7 #ifndef __i386__
8 # error wrong architecture
9 #endif
10
11 #include <stdio.h>
12
13 int main()
14 {
15         printf("\n");
16
17         return 0;
18 }