mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
15 lines
298 B
C
15 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_
|