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