Amitha Perera 939035ad91 BUG: the dependency analysis would incorrectly alphabetically re-order the
link lines, which affects external libraries pulled up from deep within
the dependency tree. Fixed by preserving order everywhere.
2002-11-19 18:01:05 -05:00

11 lines
170 B
C

// depends on NoDepC and NoDepE (and hence on NoDepA, NoDepB and
// NoDepF)
void NoDepC_func();
void NoDepE_func();
void OneFunc()
{
NoDepC_func();
NoDepE_func();
}