blob: 6e33c7b936b426a089e506d2b329467432b45b73 [file] [log] [blame]
/* depends on NoDepF */
void NoDepF_func(void);
void NoDepE_func(void)
{
static int firstcall = 1;
if (firstcall) {
firstcall = 0;
NoDepF_func();
}
}