You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
323 B
11 lines
323 B
extern void NoFunction(void);
|
|
|
|
/* 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(void)
|
|
{
|
|
NoFunction();
|
|
}
|