blob: ac31dcf37b1b279a2dd9278ecf2fbed32f9b0d58 [file] [log] [blame]
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();
}