Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 5ebe6afaf0057ac3eaeb98defd5456894b446d22 authored by Linus Torvalds on 04 May 2015, 02:22:23 UTC
Linux 4.1-rc2
Tip revision: 5ebe6af
trivial_32bit_program.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;
}
back to top