13 lines
243 B
C
13 lines
243 B
C
|
|
#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
|