2024-04-14 22:45:38 +02:00
|
|
|
extern void NoFunction(void);
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
/* 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. */
|
2024-04-14 22:45:38 +02:00
|
|
|
void ThreeFunction(void)
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
NoFunction();
|
|
|
|
}
|