Amitha Perera 0e6b39e52f BUG: Correct some of the dependency analysis code.
- Make sure the original link line is untouched
- Avoid duplicating the link line when supporting version < 1.4
- Make sure the cyclic dependencies and such are output correctly in
  complicated cases.
- Avoid outputing dependencies that are already satisfied on the original
  link line when possible.
2002-05-10 13:35:42 -04:00

15 lines
187 B
C

#include <stdio.h>
void FiveFunction();
void TwoFunction();
int main( )
{
FiveFunction();
TwoFunction();
printf("Dependency test executable ran successfully.\n");
return 0;
}