Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * Trivial program to check that we have a valid 64-bit build environment.
0004  * Copyright (c) 2015 Andy Lutomirski
0005  */
0006 
0007 #ifndef __x86_64__
0008 # error wrong architecture
0009 #endif
0010 
0011 #include <stdio.h>
0012 
0013 int main()
0014 {
0015     printf("\n");
0016 
0017     return 0;
0018 }