8e12397d70
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
15 lines
131 B
C
15 lines
131 B
C
void bar();
|
|
void foo(int n) {
|
|
for (int i = 0; i < n; ++i)
|
|
bar();
|
|
}
|
|
|
|
void quack() {
|
|
foo(4);
|
|
}
|
|
|
|
void quack2() {
|
|
foo(4);
|
|
}
|
|
|