1 /* It seems there is no way to avoid the other source of mulitple
2    source testcase from being compiled independently.  Just avoid
3    error.  */
4 #ifdef DOJOB
5 int
one(int a)6 one (int a)
7 {
8   return 1;
9 }
10 
11 int
two(int a)12 two (int a)
13 {
14   return 0;
15 }
16 #else
17 int
main()18 main()
19 {
20   return 0;
21 }
22 #endif
23