mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
25 lines
390 B
C
25 lines
390 B
C
|
void lib2_default (void);
|
||
|
void lib2_hidden (void);
|
||
|
void lib2_internal (void);
|
||
|
void lib2_protected (void);
|
||
|
|
||
|
void __attribute__((visibility ("default")))
|
||
|
lib2_default (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("hidden")))
|
||
|
lib2_hidden (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("internal")))
|
||
|
lib2_internal (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("protected")))
|
||
|
lib2_protected (void)
|
||
|
{
|
||
|
}
|