]> Git Repo - J-linux.git/blob - tools/testing/selftests/x86/trivial_32bit_program.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / testing / selftests / x86 / trivial_32bit_program.c
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  */
6
7 #ifndef __i386__
8 # error wrong architecture
9 #endif
10
11 #include <stdio.h>
12
13 int main()
14 {
15         printf("\n");
16
17         return 0;
18 }
This page took 0.029801 seconds and 4 git commands to generate.