Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
49dc6a44e0602e6a70c0466d789476c8b12fe509
/
.
/
Tests
/
Dependency
/
Three
/
ThreeSrc.c
blob: 85c51fc9d00a30bf88c5e62681e146423a4bcf85 [
file
]
void
OneFunction
(
void
);
void
FourFunction
(
void
);
void
ThreeFunction
(
void
)
{
static
int
count
=
0
;
if
(
count
==
0
)
{
++
count
;
FourFunction
();
}
OneFunction
();
}