9 lines
80 B
C
9 lines
80 B
C
extern int counter;
|
|
|
|
extern void g(void);
|
|
|
|
void f(void)
|
|
{
|
|
g();
|
|
counter++;
|
|
}
|