These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / tools / build / tests / ex / ex.c
1
2 int a(void);
3 int b(void);
4 int c(void);
5 int d(void);
6 int e(void);
7 int f(void);
8 int inc(void);
9
10 int main(void)
11 {
12         a();
13         b();
14         c();
15         d();
16         e();
17         f();
18         inc();
19
20         return 0;
21 }