Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
LinkLineOrder
/
NoDepF.c
blob: a8143107f4aeceb018b17d8ec4457be4923d50a2 [
file
] [
log
] [
blame
]
/* depends on NoDepE */
void
NoDepE_func
();
void
NoDepF_func
()
{
static
int
firstcall
=
1
;
if
(
firstcall
)
{
firstcall
=
0
;
NoDepE_func
();
}
}