8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
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(8);
|
|
}
|
|
|