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