summaryrefslogtreecommitdiff
path: root/Tests/Dependency/Two/TwoCustomSrc.c
blob: ac31dcf37b1b279a2dd9278ecf2fbed32f9b0d58 (plain)
1
2
3
4
5
6
7
8
9
10
extern void NoFunction();

/* Provide a function that is supposed to be found in the Three
   library.  If Two links to TwoCustom then TwoCustom will come before
   Three and this symbol will be used.  Since NoFunction is not
   defined, that will cause a link failure.  */
void ThreeFunction()
{
  NoFunction();
}