2024-04-14 22:45:38 +02:00

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();
}
}