sl@0: /* sl@0: * Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * ==================================================== sl@0: * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. sl@0: * sl@0: * Developed at SunPro, a Sun Microsystems, Inc. business. sl@0: * Permission to use, copy, modify, and distribute this sl@0: * software is freely granted, provided that this notice sl@0: * is preserved. sl@0: * ==================================================== sl@0: */ sl@0: sl@0: /* sl@0: * from: @(#)fdlibm.h 5.1 93/09/24 sl@0: * $FreeBSD: src/lib/msun/src/math.h,v 1.61 2005/04/16 21:12:47 das Exp $ sl@0: */ sl@0: sl@0: #ifndef _MATH_H_ sl@0: #define _MATH_H_ sl@0: sl@0: #if (defined(__SYMBIAN32__) && !defined(SYMBIAN)) sl@0: #define SYMBIAN sl@0: #endif sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #ifdef __VC32__ sl@0: /* warning C4056: overflow in floating-point constant arithmetic sl@0: * Caused by negative floating point constants, it seems! sl@0: * For example, static double foo = -1.0; sl@0: */ sl@0: #pragma warning( disable: 4056 ) sl@0: #endif sl@0: #ifdef __ARMCC__ sl@0: /* Warning: #222-D: floating-point operation result is out of range sl@0: * The compiler detects constant math that overflows, we want overflow though! sl@0: * Warning: #39-D: division by zero sl@0: */ sl@0: #pragma diag_suppress 222 sl@0: #pragma diag_suppress 39 sl@0: #pragma diag_suppress 2874 sl@0: #endif sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #include <_ansi.h> sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #include sl@0: #endif //__SYMBIAN32__ sl@0: #ifdef __SYMBIAN32__ sl@0: #include sl@0: sl@0: // IEC 559 math functionality sl@0: #define __STDC_IEC_559__ 1 sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: /* sl@0: * ANSI/POSIX sl@0: */ sl@0: #ifndef __SYMBIAN32__ sl@0: extern const union __infinity_un { sl@0: unsigned char __uc[8]; sl@0: double __ud; sl@0: } __infinity; sl@0: sl@0: extern const union __nan_un { sl@0: unsigned char __uc[sizeof(float)]; sl@0: float __uf; sl@0: } __nan; sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: #if __GNUC_PREREQ__(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800) sl@0: #define __MATH_BUILTIN_CONSTANTS sl@0: #endif sl@0: sl@0: #if __GNUC_PREREQ__(3, 0) && !defined(__INTEL_COMPILER) sl@0: #define __MATH_BUILTIN_RELOPS sl@0: #endif sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #define HUGE_VAL __infinite(1.0) sl@0: #else sl@0: #ifdef __MATH_BUILTIN_CONSTANTS sl@0: #define HUGE_VAL __builtin_huge_val() sl@0: #else sl@0: #define HUGE_VAL (__infinity.__ud) sl@0: #endif sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: #if __ISO_C_VISIBLE >= 1999 sl@0: #define FP_ILOGB0 (-__INT_MAX) sl@0: #define FP_ILOGBNAN __INT_MAX sl@0: sl@0: #ifdef __MATH_BUILTIN_CONSTANTS sl@0: #define HUGE_VALF __builtin_huge_valf() sl@0: #define HUGE_VALL __builtin_huge_vall() sl@0: #define INFINITY __builtin_inf() sl@0: #define NAN __builtin_nan("") sl@0: #else sl@0: #define HUGE_VALF (float)HUGE_VAL sl@0: #define HUGE_VALL (long double)HUGE_VAL sl@0: #define INFINITY HUGE_VALF sl@0: #ifdef __SYMBIAN32__ sl@0: #define NAN nanvalf() sl@0: #else sl@0: #define NAN (__nan.__uf) sl@0: #endif //__SYMBIAN32__ sl@0: #endif /* __MATH_BUILTIN_CONSTANTS */ sl@0: sl@0: #define MATH_ERRNO 1 sl@0: #define MATH_ERREXCEPT 2 sl@0: #define math_errhandling MATH_ERREXCEPT sl@0: sl@0: /* XXX We need a . */ sl@0: #if defined(__ia64__) || defined(__sparc64__) sl@0: #define FP_FAST_FMA sl@0: #endif sl@0: #ifdef __ia64__ sl@0: #define FP_FAST_FMAL sl@0: #endif sl@0: #define FP_FAST_FMAF sl@0: sl@0: /* Symbolic constants to classify floating point numbers. */ sl@0: #define FP_INFINITE 0x01 sl@0: #define FP_NAN 0x02 sl@0: #define FP_NORMAL 0x04 sl@0: #define FP_SUBNORMAL 0x08 sl@0: #define FP_ZERO 0x10 sl@0: sl@0: #define fpclassify(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \ sl@0: : __fpclassifyl(x)) sl@0: sl@0: #define isfinite(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __isfinitef(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __isfinite(x) \ sl@0: : __isfinitel(x)) sl@0: #define isinf(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __isinff(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __isinf(x) \ sl@0: : __isinfl(x)) sl@0: #define isnan(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __isnanf(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __isnan(x) \ sl@0: : __isnanl(x)) sl@0: #define isnormal(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __isnormalf(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __isnormal(x) \ sl@0: : __isnormall(x)) sl@0: sl@0: sl@0: #ifdef __MATH_BUILTIN_RELOPS sl@0: #define isgreater(x, y) __builtin_isgreater((x), (y)) sl@0: #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) sl@0: #define isless(x, y) __builtin_isless((x), (y)) sl@0: #define islessequal(x, y) __builtin_islessequal((x), (y)) sl@0: #define islessgreater(x, y) __builtin_islessgreater((x), (y)) sl@0: #define isunordered(x, y) __builtin_isunordered((x), (y)) sl@0: #else sl@0: #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) sl@0: #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) sl@0: #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) sl@0: #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) sl@0: #define islessgreater(x, y) (!isunordered((x), (y)) && \ sl@0: ((x) > (y) || (y) > (x))) sl@0: #define isunordered(x, y) (isnan(x) || isnan(y)) sl@0: #endif /* __MATH_BUILTIN_RELOPS */ sl@0: sl@0: #define signbit(x) \ sl@0: ((sizeof (x) == sizeof (float)) ? __signbitf(x) \ sl@0: : (sizeof (x) == sizeof (double)) ? __signbit(x) \ sl@0: : __signbitl(x)) sl@0: sl@0: typedef __double_t double_t; sl@0: typedef __float_t float_t; sl@0: #endif /* __ISO_C_VISIBLE >= 1999 */ sl@0: sl@0: /* sl@0: * XOPEN/SVID sl@0: */ sl@0: #if __BSD_VISIBLE || __XSI_VISIBLE sl@0: #define M_E 2.7182818284590452354 /* e */ sl@0: #define M_LOG2E 1.4426950408889634074 /* log 2e */ sl@0: #define M_LOG10E 0.43429448190325182765 /* log 10e */ sl@0: #define M_LN2 0.69314718055994530942 /* log e2 */ sl@0: #define M_LN10 2.30258509299404568402 /* log e10 */ sl@0: #define M_PI 3.14159265358979323846 /* pi */ sl@0: #define M_PI_2 1.57079632679489661923 /* pi/2 */ sl@0: #define M_PI_4 0.78539816339744830962 /* pi/4 */ sl@0: #define M_1_PI 0.31830988618379067154 /* 1/pi */ sl@0: #define M_2_PI 0.63661977236758134308 /* 2/pi */ sl@0: #define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */ sl@0: #define M_SQRT2 1.41421356237309504880 /* sqrt(2) */ sl@0: #define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */ sl@0: sl@0: #define MAXFLOAT ((float)3.40282346638528860e+38) sl@0: #ifdef __SYMBIAN32__ sl@0: #ifndef __WINSCW__ sl@0: extern int _signgam; sl@0: #endif //__WINSCW__ sl@0: #else sl@0: extern int signgam; sl@0: #endif //__SYMBIAN32__ sl@0: #endif /* __BSD_VISIBLE || __XSI_VISIBLE */ sl@0: sl@0: #if __BSD_VISIBLE sl@0: #if 0 sl@0: /* Old value from 4.4BSD-Lite math.h; this is probably better. */ sl@0: #define HUGE HUGE_VAL sl@0: #else sl@0: #define HUGE MAXFLOAT sl@0: #endif sl@0: #endif /* __BSD_VISIBLE */ sl@0: sl@0: /* sl@0: * Most of these functions depend on the rounding mode and have the side sl@0: * effect of raising floating-point exceptions, so they are not declared sl@0: * as __pure2. In C99, FENV_ACCESS affects the purity of these functions. sl@0: */ sl@0: __BEGIN_DECLS sl@0: /* sl@0: * ANSI/POSIX sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C double __infinite(double x); sl@0: IMPORT_C float __infinitef(float x); sl@0: sl@0: IMPORT_C double nanval(void ); sl@0: IMPORT_C float nanvalf(void ); sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: sl@0: IMPORT_C int __fpclassifyd(double) __pure2; sl@0: IMPORT_C int __fpclassifyf(float) __pure2; sl@0: IMPORT_C int __fpclassifyl(long double) __pure2; sl@0: IMPORT_C int __isfinitef(float) __pure2; sl@0: IMPORT_C int __isfinite(double) __pure2; sl@0: IMPORT_C int __isfinitel(long double) __pure2; sl@0: IMPORT_C int __isinf(double) __pure2; sl@0: IMPORT_C int __isinff(float) __pure2; sl@0: IMPORT_C int __isinfl(long double) __pure2; sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C int __isnan(double) __pure2; sl@0: IMPORT_C int __isnanf(float) __pure2; sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C int __isnanl(long double) __pure2; sl@0: IMPORT_C int __isnormalf(float) __pure2; sl@0: IMPORT_C int __isnormal(double) __pure2; sl@0: IMPORT_C int __isnormall(long double) __pure2; sl@0: IMPORT_C int __signbit(double) __pure2; sl@0: IMPORT_C int __signbitf(float) __pure2; sl@0: IMPORT_C int __signbitl(long double) __pure2; sl@0: sl@0: IMPORT_C double acos(double); sl@0: IMPORT_C double asin(double); sl@0: IMPORT_C double atan(double); sl@0: IMPORT_C double atan2(double, double); sl@0: IMPORT_C double cos(double); sl@0: IMPORT_C double sin(double); sl@0: IMPORT_C double tan(double); sl@0: sl@0: IMPORT_C double cosh(double); sl@0: IMPORT_C double sinh(double); sl@0: IMPORT_C double tanh(double); sl@0: sl@0: IMPORT_C double exp(double); sl@0: IMPORT_C double frexp(double, int *); /* fundamentally !__pure2 */ sl@0: IMPORT_C double ldexp(double, int); sl@0: IMPORT_C double log(double); sl@0: IMPORT_C double log10(double); sl@0: IMPORT_C double modf(double, double *); /* fundamentally !__pure2 */ sl@0: sl@0: IMPORT_C double pow(double, double); sl@0: IMPORT_C double sqrt(double); sl@0: sl@0: IMPORT_C double ceil(double); sl@0: IMPORT_C double fabs(double) __pure2; sl@0: IMPORT_C double floor(double); sl@0: IMPORT_C double fmod(double, double); sl@0: sl@0: /* sl@0: * These functions are not in C90. sl@0: */ sl@0: #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE sl@0: IMPORT_C double acosh(double); sl@0: IMPORT_C double asinh(double); sl@0: IMPORT_C double atanh(double); sl@0: IMPORT_C double cbrt(double); sl@0: IMPORT_C double erf(double); sl@0: IMPORT_C double erfc(double); sl@0: IMPORT_C double exp2(double); sl@0: IMPORT_C double expm1(double); sl@0: IMPORT_C double fma(double, double, double); sl@0: IMPORT_C double hypot(double, double); sl@0: sl@0: sl@0: IMPORT_C int ilogb(double) __pure2; sl@0: /* sl@0: int (isinf)(double) __pure2; sl@0: int (isnan)(double) __pure2; sl@0: */ sl@0: IMPORT_C double lgamma(double); sl@0: IMPORT_C long long llrint(double); sl@0: IMPORT_C long long llround(double); sl@0: IMPORT_C double log1p(double); sl@0: IMPORT_C double logb(double); sl@0: IMPORT_C long lrint(double); sl@0: IMPORT_C long lround(double); sl@0: IMPORT_C double nextafter(double, double); sl@0: IMPORT_C double remainder(double, double); sl@0: IMPORT_C double remquo(double, double, int *); sl@0: IMPORT_C double rint(double); sl@0: #endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */ sl@0: sl@0: #if __BSD_VISIBLE || __XSI_VISIBLE sl@0: IMPORT_C double j0(double); sl@0: IMPORT_C double j1(double); sl@0: IMPORT_C double jn(int, double); sl@0: IMPORT_C double scalb(double, double); sl@0: IMPORT_C double y0(double); sl@0: IMPORT_C double y1(double); sl@0: IMPORT_C double yn(int, double); sl@0: sl@0: #if __XSI_VISIBLE <= 500 || __BSD_VISIBLE sl@0: IMPORT_C double gamma(double); sl@0: #endif sl@0: #endif /* __BSD_VISIBLE || __XSI_VISIBLE */ sl@0: sl@0: #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 sl@0: IMPORT_C double copysign(double, double) __pure2; sl@0: IMPORT_C double fdim(double, double); sl@0: IMPORT_C double fmax(double, double) __pure2; sl@0: IMPORT_C double fmin(double, double) __pure2; sl@0: IMPORT_C double nearbyint(double); sl@0: IMPORT_C double round(double); sl@0: IMPORT_C double scalbln(double, long); sl@0: IMPORT_C double scalbn(double, int); sl@0: IMPORT_C double trunc(double); sl@0: #endif sl@0: sl@0: /* sl@0: * BSD math library entry points sl@0: */ sl@0: #if __BSD_VISIBLE sl@0: IMPORT_C double drem(double, double); sl@0: IMPORT_C int finite(double) __pure2; sl@0: sl@0: /* sl@0: * Reentrant version of gamma & lgamma; passes signgam back by reference sl@0: * as the second argument; user must allocate space for signgam. sl@0: */ sl@0: IMPORT_C double lgamma_r(double, int *); sl@0: sl@0: /* sl@0: * IEEE Test Vector sl@0: */ sl@0: IMPORT_C double significand(double); sl@0: #endif /* __BSD_VISIBLE */ sl@0: sl@0: /* float versions of ANSI/POSIX functions */ sl@0: #if __ISO_C_VISIBLE >= 1999 sl@0: IMPORT_C float acosf(float); sl@0: sl@0: IMPORT_C float acosf(float); sl@0: IMPORT_C float asinf(float); sl@0: IMPORT_C float atanf(float); sl@0: IMPORT_C float atan2f(float, float); sl@0: IMPORT_C float cosf(float); sl@0: IMPORT_C float sinf(float); sl@0: IMPORT_C float tanf(float); sl@0: sl@0: IMPORT_C float coshf(float); sl@0: IMPORT_C float sinhf(float); sl@0: IMPORT_C float tanhf(float); sl@0: IMPORT_C float exp2f(float); sl@0: IMPORT_C float expf(float); sl@0: IMPORT_C float expm1f(float); sl@0: IMPORT_C float frexpf(float, int *); /* fundamentally !__pure2 */ sl@0: IMPORT_C int ilogbf(float) __pure2; sl@0: #ifndef __SYMBIAN32__ sl@0: float ldexpf(float, int); sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C float log10f(float); sl@0: IMPORT_C float log1pf(float); sl@0: IMPORT_C float logf(float); sl@0: IMPORT_C float modff(float, float *); /* fundamentally !__pure2 */ sl@0: sl@0: IMPORT_C float powf(float, float); sl@0: IMPORT_C float sqrtf(float); sl@0: sl@0: IMPORT_C float ceilf(float); sl@0: IMPORT_C float fabsf(float) __pure2; sl@0: IMPORT_C float floorf(float); sl@0: IMPORT_C float fmodf(float, float); sl@0: IMPORT_C float roundf(float); sl@0: sl@0: IMPORT_C float erff(float); sl@0: IMPORT_C float erfcf(float); sl@0: IMPORT_C float hypotf(float, float); sl@0: IMPORT_C float lgammaf(float); sl@0: sl@0: IMPORT_C float acoshf(float); sl@0: IMPORT_C float asinhf(float); sl@0: IMPORT_C float atanhf(float); sl@0: IMPORT_C float cbrtf(float); sl@0: IMPORT_C float logbf(float); sl@0: IMPORT_C float copysignf(float, float) __pure2; sl@0: IMPORT_C long long llrintf(float); sl@0: IMPORT_C long long llroundf(float); sl@0: IMPORT_C long lrintf(float); sl@0: IMPORT_C long lroundf(float); sl@0: IMPORT_C float nearbyintf(float); sl@0: IMPORT_C float nextafterf(float, float); sl@0: IMPORT_C float remainderf(float, float); sl@0: IMPORT_C float remquof(float, float, int *); sl@0: IMPORT_C float rintf(float); sl@0: IMPORT_C float scalblnf(float, long); sl@0: IMPORT_C float scalbnf(float, int); sl@0: IMPORT_C float truncf(float); sl@0: sl@0: IMPORT_C float fdimf(float, float); sl@0: IMPORT_C float fmaf(float, float, float); sl@0: IMPORT_C float fmaxf(float, float) __pure2; sl@0: IMPORT_C float fminf(float, float) __pure2; sl@0: #endif sl@0: sl@0: /* sl@0: * float versions of BSD math library entry points sl@0: */ sl@0: #if __BSD_VISIBLE sl@0: sl@0: #ifdef __SYMBIAN_COMPILE_UNUSED__ sl@0: float dremf(float, float); sl@0: #endif sl@0: sl@0: IMPORT_C int finitef(float) __pure2; sl@0: IMPORT_C float gammaf(float); sl@0: IMPORT_C float j0f(float); sl@0: IMPORT_C float j1f(float); sl@0: IMPORT_C float jnf(int, float); sl@0: IMPORT_C float scalbf(float, float); sl@0: IMPORT_C float y0f(float); sl@0: IMPORT_C float y1f(float); sl@0: IMPORT_C float ynf(int, float); sl@0: sl@0: /* sl@0: * Float versions of reentrant version of gamma & lgamma; passes sl@0: * signgam back by reference as the second argument; user must sl@0: * allocate space for signgam. sl@0: */ sl@0: IMPORT_C float lgammaf_r(float, int *); sl@0: sl@0: /* sl@0: * float version of IEEE Test Vector sl@0: */ sl@0: IMPORT_C float significandf(float); sl@0: #endif /* __BSD_VISIBLE */ sl@0: sl@0: /* sl@0: * long double versions of ISO/POSIX math functions sl@0: */ sl@0: #if __ISO_C_VISIBLE >= 1999 sl@0: #if 0 sl@0: long double acoshl(long double); sl@0: long double acosl(long double); sl@0: long double asinhl(long double); sl@0: long double asinl(long double); sl@0: long double atan2l(long double, long double); sl@0: long double atanhl(long double); sl@0: long double atanl(long double); sl@0: long double cbrtl(long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long double ceill(long double); sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C long double copysignl(long double, long double) __pure2; sl@0: #if 0 sl@0: long double coshl(long double); sl@0: long double cosl(long double); sl@0: long double erfcl(long double); sl@0: long double erfl(long double); sl@0: long double exp2l(long double); sl@0: long double expl(long double); sl@0: long double expm1l(long double); sl@0: #endif sl@0: IMPORT_C long double fabsl(long double) __pure2; sl@0: IMPORT_C long double fdiml(long double, long double); sl@0: #ifndef __SYMBIAN32__ sl@0: long double floorl(long double); sl@0: long double fmal(long double, long double, long double); sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C long double fmaxl(long double, long double) __pure2; sl@0: #ifndef __SYMBIAN32__ sl@0: long double fminl(long double, long double) __pure2; sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double fmodl(long double, long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long double frexpl(long double value, int *); /* fundamentally !__pure2 */ sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double hypotl(long double, long double); sl@0: #endif sl@0: IMPORT_C int ilogbl(long double) __pure2; sl@0: #ifndef __SYMBIAN32__ sl@0: long double ldexpl(long double, int); sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double lgammal(long double); sl@0: long long llrintl(long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long long llroundl(long double); sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double log10l(long double); sl@0: long double log1pl(long double); sl@0: long double log2l(long double); sl@0: long double logbl(long double); sl@0: long double logl(long double); sl@0: long lrintl(long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long lroundl(long double); sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double modfl(long double, long double *); /* fundamentally !__pure2 */ sl@0: long double nanl(const char *) __pure2; sl@0: long double nearbyintl(long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long double nextafterl(long double, long double); sl@0: double nexttoward(double, long double); sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C float nexttowardf(float, long double); sl@0: #ifndef __SYMBIAN32__ sl@0: long double nexttowardl(long double, long double); sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double powl(long double, long double); sl@0: long double remainderl(long double, long double); sl@0: long double remquol(long double, long double, int *); sl@0: long double rintl(long double); sl@0: #endif sl@0: #ifndef __SYMBIAN32__ sl@0: long double roundl(long double); sl@0: #endif //__SYMBIAN32__ sl@0: IMPORT_C long double scalblnl(long double, long); sl@0: #ifndef __SYMBIAN32__ sl@0: long double scalbnl(long double, int); sl@0: #endif //__SYMBIAN32__ sl@0: #if 0 sl@0: long double sinhl(long double); sl@0: long double sinl(long double); sl@0: long double sqrtl(long double); sl@0: long double tanhl(long double); sl@0: long double tanl(long double); sl@0: #endif sl@0: IMPORT_C long double truncl(long double); sl@0: sl@0: #endif /* __ISO_C_VISIBLE >= 1999 */ sl@0: __END_DECLS sl@0: sl@0: #endif /* !_MATH_H_ */