trivial_64bit_program.c 278 B

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