Sign in
android-kvm
/
linux
/
92ae18371cb1abb4e186dd9d48de2bb0d9bba626
/
.
/
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
;
}