12 lines
165 B
C
Raw Normal View History

/* depends on NoDepE */
2024-04-14 22:45:38 +02:00
void NoDepE_func(void);
2024-04-14 22:45:38 +02:00
void NoDepF_func(void)
{
static int firstcall = 1;
2016-07-09 11:21:54 +02:00
if (firstcall) {
firstcall = 0;
NoDepE_func();
}
}