mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-15 14:00:40 -05:00
11 lines
323 B
C
11 lines
323 B
C
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();
|
|
}
|