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