xref: /openbmc/linux/tools/testing/selftests/x86/trivial_program.c (revision ea47eed33a3fe3d919e6e3cf4e4eb5507b817188)
1 /* Trivial program to check that compilation with certain flags is working. */
2 
3 #include <stdio.h>
4 
5 int
6 main(void)
7 {
8 	puts("");
9 	return 0;
10 }
11