Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
Dependency
/
Three
/
ThreeSrc.c
blob: 3e814f3ea8e12f4a34efbc26d27de5fe643f81ad [
file
] [
log
] [
blame
]
void
OneFunction
();
void
FourFunction
();
void
ThreeFunction
()
{
static
int
count
=
0
;
if
(
count
==
0
)
{
++
count
;
FourFunction
();
}
OneFunction
();
}