#ifndef FEATURES_H #define FEATURES_H #include "../../include/features.h" #define hidden __attribute__((__visibility__("hidden"))) #define weak_alias(old, new) \ extern __typeof(old) new __attribute__((__weak__, __alias__(#old))) #define strong_alias(old, new) \ extern __typeof(old) new __attribute__((__alias__(#old))) #endif