brintos

brintos / linux-shallow public Read only

0
0
Text · 276 B · aa1f58c Raw
19 lines · c
1// SPDX-License-Identifier: GPL-2.0-only2/*3 * Trivial program to check that we have a valid 32-bit build environment.4 * Copyright (c) 2015 Andy Lutomirski5 */6 7#ifndef __i386__8# error wrong architecture9#endif10 11#include <stdio.h>12 13int main()14{15	printf("\n");16 17	return 0;18}19