Loading...
Searching...
No Matches
Go to the documentation of this file.
14#if defined _WIN32 || defined __CYGWIN__
16#define TCALC_PUBLIC __declspec(dllexport)
18#define TCALC_PUBLIC __declspec(dllimport)
22#define TCALC_PUBLIC __attribute__((visibility("default")))
28#if defined _WIN32 || defined __CYGWIN__
29#define TCALC_INLINE inline __forceinline
31#define TCALC_INLINE inline __attribute__((always_inline))
34#if defined _WIN32 || defined __CYGWIN__
35#define TCALC_PRINTF_FORMAT(fmt_idx, arg_idx)
37#define TCALC_PRINTF_FORMAT(fmt_idx, arg_idx) \
38 __attribute__((format(printf, fmt_idx, arg_idx)))