mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00:00
25 lines
390 B
C
25 lines
390 B
C
void lib3_default (void);
|
|
void lib3_hidden (void);
|
|
void lib3_internal (void);
|
|
void lib3_protected (void);
|
|
|
|
void __attribute__((visibility ("default")))
|
|
lib3_default (void)
|
|
{
|
|
}
|
|
|
|
void __attribute__((visibility ("hidden")))
|
|
lib3_hidden (void)
|
|
{
|
|
}
|
|
|
|
void __attribute__((visibility ("internal")))
|
|
lib3_internal (void)
|
|
{
|
|
}
|
|
|
|
void __attribute__((visibility ("protected")))
|
|
lib3_protected (void)
|
|
{
|
|
}
|