Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
aad9033b5640b62ab47c0be926b8e05d66b735c0
/
.
/
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
();
}