foo()1 void foo() { }
2 
bar()3 void bar() { }
4 
main(void)5 int main(void) {
6     foo();
7 
8     bar();
9 
10     return 0;
11 }
12