Files
CMake/Tests/Dependency/Two/TwoSrc.c
2023-10-26 09:20:45 -04:00

11 lines
132 B
C

#include <two-test.h>
void TwoFunction(void)
{
static int count = 0;
if (count == 0) {
++count;
ThreeFunction();
}
}