Sign in
android-kvm
/
linux
/
4b5ca74113a1e02f4a7ea80aea9b977705f3d961
/
.
/
tools
/
testing
/
selftests
/
x86
/
trivial_32bit_program.c
blob: 2e231beb0a39e7c4b1571dc6ee746941ff069705 [
file
] [
log
] [
blame
]
/*
* 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
;
}