Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
4f73a9b74e65caa26ef859ac8fc4e556b61da0fd
/
.
/
Tests
/
LinkLineOrder
/
NoDepF.c
blob: f4afcb5c76d2022cd22e0acd3674bcb57642c37e [
file
]
/* depends on NoDepE */
void
NoDepE_func
(
void
);
void
NoDepF_func
(
void
)
{
static
int
firstcall
=
1
;
if
(
firstcall
)
{
firstcall
=
0
;
NoDepE_func
();
}
}