Sign in
fuchsia
/
third_party
/
cmake
/
refs/heads/main
/
.
/
Tests
/
LinkLineOrder
/
NoDepF.c
blob: f4afcb5c76d2022cd22e0acd3674bcb57642c37e [
file
] [
log
] [
blame
] [
edit
]
/* depends on NoDepE */
void
NoDepE_func
(
void
);
void
NoDepF_func
(
void
)
{
static
int
firstcall
=
1
;
if
(
firstcall
)
{
firstcall
=
0
;
NoDepE_func
();
}
}