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