WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / x86 / trivial_32bit_program.c
blobaa1f58c2f71c130d2077a9622d57d7c5858f2fa3
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Trivial program to check that we have a valid 32-bit build environment.
4 * Copyright (c) 2015 Andy Lutomirski
5 */
7 #ifndef __i386__
8 # error wrong architecture
9 #endif
11 #include <stdio.h>
13 int main()
15 printf("\n");
17 return 0;