xref: /openbmc/linux/tools/testing/selftests/x86/trivial_32bit_program.c (revision 5c73cc4b6c83e88863a5de869cc5df3b913aef4a)
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