e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
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);
|
|
}
|
|
|