1 2 3 4 5 6 7 8 9
int hidden_function(void) { return 0; } __attribute__((visibility("default"))) int not_hidden(void) { return hidden_function(); }