25 lines
390 B
C
25 lines
390 B
C
|
void lib1_default (void);
|
||
|
void lib1_hidden (void);
|
||
|
void lib1_internal (void);
|
||
|
void lib1_protected (void);
|
||
|
|
||
|
void __attribute__((visibility ("default")))
|
||
|
lib1_default (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("hidden")))
|
||
|
lib1_hidden (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("internal")))
|
||
|
lib1_internal (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void __attribute__((visibility ("protected")))
|
||
|
lib1_protected (void)
|
||
|
{
|
||
|
}
|