aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/x86/trivial_32bit_program.c
blob: 2e231beb0a39e7c4b1571dc6ee746941ff069705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Trivial program to check that we have a valid 32-bit build environment.
 * Copyright (c) 2015 Andy Lutomirski
 * GPL v2
 */

#include <stdio.h>

int main()
{
	printf("\n");

	return 0;
}