2015-05-11 22:11:36 +00:00
|
|
|
/*
|
2015-05-23 02:56:56 +00:00
|
|
|
* Trivial program to check that we have a valid 64-bit build environment.
|
2015-05-11 22:11:36 +00:00
|
|
|
* Copyright (c) 2015 Andy Lutomirski
|
|
|
|
* GPL v2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __x86_64__
|
|
|
|
# error wrong architecture
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|