xref: /openbmc/linux/tools/testing/selftests/x86/trivial_32bit_program.c (revision 63c43812ee99efe7903955bae8cd928e9582477a)
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 }
15