Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Duplicate
-
2.0.2-alpha
-
None
-
None
Description
libhdfs symbols should be hidden unless they're part of the API. If we don't hide symbols, they could conflict with symbols in a library user's program.
This can be accomplished with _attribute_((visibility)) like this:
void __attribute__((visibility("hidden"))) bar(int i);