CMake/Tests/LinkLineOrder/Two.c

9 lines
86 B
C

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