Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
0878306386d42084e8abc3525393ae2b65acf725
/
.
/
Tests
/
Visibility
/
hidden.c
blob: 12f071ff626127a9b523a63d60cd88e9320becd8 [
file
] [
log
] [
blame
]
int
hidden_function
(
void
)
{
return
0
;
}
__attribute__
((
visibility
(
"default"
)))
int
not_hidden
(
void
)
{
return
hidden_function
();
}