mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
11 lines
175 B
C
11 lines
175 B
C
|
/*
|
||
|
* Test function. This is built into a shared library, and references a
|
||
|
* versioned symbol foo that is in test.so.
|
||
|
*/
|
||
|
|
||
|
void
|
||
|
show_xyzzy()
|
||
|
{
|
||
|
printf("%d", show_foo());
|
||
|
}
|