9 lines
86 B
C
9 lines
86 B
C
void OneFunc();
|
|
void NoDepZ_func();
|
|
|
|
void TwoFunc()
|
|
{
|
|
OneFunc();
|
|
NoDepZ_func();
|
|
}
|