RetroArch
miniupnpc_declspec.h
Go to the documentation of this file.
1 #ifndef MINIUPNPC_DECLSPEC_H_INCLUDED
2 #define MINIUPNPC_DECLSPEC_H_INCLUDED
3 
4 #if defined(__GNUC__) && __GNUC__ >= 4
5 /* fix dynlib for OS X 10.9.2 and Apple LLVM version 5.0 */
6 #define MINIUPNP_LIBSPEC __attribute__ ((visibility ("default")))
7 #else
8 #define MINIUPNP_LIBSPEC
9 #endif
10 
11 #endif /* MINIUPNPC_DECLSPEC_H_INCLUDED */
12