mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-28 20:04:10 +00:00
9 lines
98 B
C
9 lines
98 B
C
void OneFunc(void);
|
|
void NoDepZ_func(void);
|
|
|
|
void TwoFunc(void)
|
|
{
|
|
OneFunc();
|
|
NoDepZ_func();
|
|
}
|