Release 4.7 tools/testing/selftests/x86/trivial_64bit_program.c
/*
* Trivial program to check that we have a valid 64-bit build environment.
* Copyright (c) 2015 Andy Lutomirski
* GPL v2
*/
#ifndef __x86_64__
# error wrong architecture
#endif
#include <stdio.h>
int main()
{
printf("\n");
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andy lutomirski | andy lutomirski | 13 | 100.00% | 1 | 100.00% |
| Total | 13 | 100.00% | 1 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andy lutomirski | andy lutomirski | 24 | 96.00% | 1 | 50.00% |
martin kelly | martin kelly | 1 | 4.00% | 1 | 50.00% |
| Total | 25 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.