]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/build/tests/ex/ex.c
sched: Don't scan all-offline ->cpus_allowed twice if !CONFIG_CPUSETS
[karo-tx-linux.git] / 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
9 int main(void)
10 {
11         a();
12         b();
13         c();
14         d();
15         e();
16         f();
17
18         return 0;
19 }