diff options
author | Nikias Bassen | 2014-10-03 15:39:47 +0200 |
---|---|---|
committer | Nikias Bassen | 2014-10-03 15:39:47 +0200 |
commit | 62813daf2c4aaec675652d9c1131a58dfa634e38 (patch) | |
tree | 4427398d97f1295996410fc3dbf86c6de8bf873c /src/common.h | |
parent | eab599c151617eef9035343fd63591fa4d09bd3e (diff) | |
download | libplist-62813daf2c4aaec675652d9c1131a58dfa634e38.tar.gz libplist-62813daf2c4aaec675652d9c1131a58dfa634e38.tar.bz2 |
Avoid exporting non-public symbols
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index c71ef4a..657e049 100644 --- a/src/common.h +++ b/src/common.h @@ -17,12 +17,4 @@ #endif #endif -#if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__CYGWIN__) && !defined(WIN32) -# define _PLIST_INTERNAL __attribute__((visibility("hidden"))) -#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550) -# define _PLIST_INTERNAL __hidden -#else /* not gcc >= 4 and not Sun Studio >= 8 */ -# define _PLIST_INTERNAL -#endif /* GNUC >= 4 */ - #endif |