#ifndef _Logiscope_CISO99_tgmath_h #define _Logiscope_CISO99_tgmath_h #include #include /* The system implementation will define how these functions map to their complex.h or math.h version */ #define acos(x) __lg_undef_math_1(x) #define asin(x) __lg_undef_math_1(x) #define atan(x) __lg_undef_math_1(x) #define acosh(x) __lg_undef_math_1(x) #define asinh(x) __lg_undef_math_1(x) #define atanh(x) __lg_undef_math_1(x) #define cos(x) __lg_undef_math_1(x) #define sin(x) __lg_undef_math_1(x) #define tan(x) __lg_undef_math_1(x) #define cosh(x) __lg_undef_math_1(x) #define sinh(x) __lg_undef_math_1(x) #define tanh(x) __lg_undef_math_1(x) #define exp(x) __lg_undef_math_1(x) #define log(x) __lg_undef_math_1(x) #define pow(x, y) __lg_undef_math_2(x, y) #define sqrt(x) __lg_undef_math_1(x) #define fabs(x) __lg_undef_math_1(x) #define atan2(x, y) __lg_undef_math_2(x, y) #define cbrt(x) __lg_undef_math_1(x) #define ceil(x) __lg_undef_math_1(x) #define copysign(x, y) __lg_undef_math_2(x, y) #define erf(x) __lg_undef_math_1(x) #define erfc(x) __lg_undef_math_1(x) #define exp2(x) __lg_undef_math_1(x) #define expm1(x) __lg_undef_math_1(x) #define fdim(x, y) __lg_undef_math_2(x, y) #define floor(x) __lg_undef_math_1(x) #define fma(x, y, z) __lg_undef_math_3(x, y, z) #define fmax(x, y) __lg_undef_math_2(x, y) #define fmin(x, y) __lg_undef_math_2(x, y) #define fmod(x, y) __lg_undef_math_2(x, y) #define frexp(x, y) __lg_undef_math_2(x, y) #define hypot(x, y) __lg_undef_math_2(x, y) #define ilogb(x) __lg_undef_math_1(x) #define ldexp(x, y) __lg_undef_math_2(x, y) #define lgamma(x) __lg_undef_math_1(x) #define llrint(x) __lg_undef_math_1(x) #define llround(x) __lg_undef_math_1(x) #define log10(x) __lg_undef_math_1(x) #define log1p(x) __lg_undef_math_1(x) #define log2(x) __lg_undef_math_1(x) #define logb(x) __lg_undef_math_1(x) #define lrint(x) __lg_undef_math_1(x) #define lround(x) __lg_undef_math_1(x) #define nearbyint(x) __lg_undef_math_1(x) #define nextafter(x, y) __lg_undef_math_2(x, y) #define nexttoward(x, y) __lg_undef_math_2(x, y) #define remainder(x, y) __lg_undef_math_2(x, y) #define remquo(x, y, z) __lg_undef_math_3(x, y, z) #define rint(x) __lg_undef_math_1(x) #define round(x) __lg_undef_math_1(x) #define scalbn(x, y) __lg_undef_math_2(x, y) #define scalbln(x, y) __lg_undef_math_2(x, y) #define tgamma(x) __lg_undef_math_1(x) #define trunc(x) __lg_undef_math_1(x) #define carg(x) __lg_undef_math_1(x) #define cimag(x) __lg_undef_math_1(x) #define conj(x) __lg_undef_math_1(x) #define cproj(x) __lg_undef_math_1(x) #define creal(x) __lg_undef_math_1(x) #endif /* _Logiscope_CISO99_tgmath_h */