TwoCustomSrc.c 315 B

12345678910
  1. extern void NoFunction();
  2. /* Provide a function that is supposed to be found in the Three
  3. library. If Two links to TwoCustom then TwoCustom will come before
  4. Three and this symbol will be used. Since NoFunction is not
  5. defined, that will cause a link failure. */
  6. void ThreeFunction()
  7. {
  8. NoFunction();
  9. }