12 lines
165 B
C
12 lines
165 B
C
/* depends on NoDepE */
|
|
void NoDepE_func(void);
|
|
|
|
void NoDepF_func(void)
|
|
{
|
|
static int firstcall = 1;
|
|
if (firstcall) {
|
|
firstcall = 0;
|
|
NoDepE_func();
|
|
}
|
|
}
|