1 #ifndef FEATURES_H 2 #define FEATURES_H 3 4 #include "../../include/features.h" 5 6 #define hidden __attribute__((__visibility__("hidden"))) 7 #define weak_alias(old, new) \ 8 extern __typeof(old) new __attribute__((__weak__, __alias__(#old))) 9 10 #endif 11