11 lines
189 B
C
Raw Normal View History

/* depends on NoDepC and NoDepE (and hence on NoDepA, NoDepB and */
/* NoDepF) */
2024-04-14 22:45:38 +02:00
void NoDepC_func(void);
void NoDepE_func(void);
2024-04-14 22:45:38 +02:00
void OneFunc(void)
{
NoDepC_func();
NoDepE_func();
}