1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-19 02:17:27 +08:00
Files
CMake/Tests/LinkLine/Two.c
2023-10-26 09:20:45 -04:00

11 lines
106 B
C

void OneFunc(void);
void TwoFunc(void)
{
static int i = 0;
++i;
if (i == 1) {
OneFunc();
}
}