trivial_64bit_program.c 247 B

12345678910111213141516171819
  1. /*
  2. * Trivial program to check that we have a valid 64-bit build environment.
  3. * Copyright (c) 2015 Andy Lutomirski
  4. * GPL v2
  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. }