summaryrefslogtreecommitdiffstats
path: root/src/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/internal.h b/src/internal.h
index ed8028f..3a88d1a 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -3,9 +3,10 @@
#include "config.h"
#ifdef HAVE_VISIBILITY_HIDDEN
-# define EXPORT_SYMBOL __attribute__((visibility("default")))
+# define __visible __attribute__((visibility("default")))
+# define EXPORT_SYMBOL(x) typeof(x) (x) __visible
#else
# define EXPORT_SYMBOL
#endif
-#endif \ No newline at end of file
+#endif