9 lines
86 B
C
Raw Normal View History

void OneFunc();
void NoDepZ_func();
void TwoFunc()
{
OneFunc();
NoDepZ_func();
}