summaryrefslogtreecommitdiffstats
path: root/src/internal.h
blob: 3a88d1a1f7d8b00c73a9e77524796811df7e9653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef INTERNAL_H
#define INTERNAL_H 1

#include "config.h"
#ifdef HAVE_VISIBILITY_HIDDEN
#	define __visible	__attribute__((visibility("default")))
#	define EXPORT_SYMBOL(x)	typeof(x) (x) __visible
#else
#	define EXPORT_SYMBOL
#endif

#endif