Merge tag 'v4.1-rockchip-socfixes1' of git://git.kernel.org/pub/scm/linux/kernel...
[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 #include <stdio.h>
8
9 int main()
10 {
11         printf("\n");
12
13         return 0;
14 }