]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/build/tests/ex/ex.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / build / tests / ex / ex.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
c819e2cf
JO
2
3int a(void);
4int b(void);
5int c(void);
6int d(void);
7int e(void);
8int f(void);
0c00c3fb 9int inc(void);
c819e2cf
JO
10
11int main(void)
12{
13 a();
14 b();
15 c();
16 d();
17 e();
18 f();
0c00c3fb 19 inc();
c819e2cf
JO
20
21 return 0;
22}