14 lines
298 B
C
14 lines
298 B
C
#ifndef OPENLIBM_DEFS_H_
|
|
#define OPENLIBM_DEFS_H_
|
|
|
|
#ifdef _WIN32
|
|
# ifdef IMPORT_EXPORTS
|
|
# define OLM_DLLEXPORT __declspec(dllimport)
|
|
# else
|
|
# define OLM_DLLEXPORT __declspec(dllexport)
|
|
# endif
|
|
#else
|
|
#define OLM_DLLEXPORT __attribute__ ((visibility("default")))
|
|
#endif
|
|
|
|
#endif // OPENLIBM_DEFS_H_
|