mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00
15 lines
193 B
C
15 lines
193 B
C
![]() |
/*
|
||
|
* 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;
|
||
|
}
|