trivial_32bit_program.c 276 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Trivial program to check that we have a valid 32-bit build environment.
  4. * Copyright (c) 2015 Andy Lutomirski
  5. */
  6. #ifndef __i386__
  7. # error wrong architecture
  8. #endif
  9. #include <stdio.h>
  10. int main()
  11. {
  12. printf("\n");
  13. return 0;
  14. }