5 lines
119 B
C
5 lines
119 B
C
static void fun2(){int i=0;}
|
|
void fun1(){int i=0;}
|
|
void fun3(){}
|
|
int main(){ fun1(); fun2(); return 0;}
|