1 /* $NetBSD: namespace.h,v 1.16 2022/08/27 08:31:59 christos Exp $ */ 2 3 #define atan2 _atan2 4 #define atan2f _atan2f 5 #define atan2l _atan2l 6 #define hypot _hypot 7 #define hypotf _hypotf 8 #define hypotl _hypotl 9 10 #define exp _exp 11 #define expf _expf 12 #define expl _expl 13 #define log _log 14 #define logf _logf 15 #define logl _logl 16 17 #if 0 /* not yet - need to review use in machdep code first */ 18 #define sin _sin 19 #define sinf _sinf 20 #define cos _cos 21 #define cosf _cosf 22 #define finite _finite 23 #define finitef _finitef 24 #endif /* notyet */ 25 #define sincos _sincos 26 #define sincosf _sincosf 27 #define sincosl _sincosl 28 #define sinh _sinh 29 #define sinhf _sinhf 30 #define sinhl _sinhl 31 #define cosh _cosh 32 #define coshf _coshf 33 #define coshl _coshl 34 #define asin _asin 35 #define asinf _asinf 36 #define asinl _asinl 37 38 #define casin _casin 39 #define casinf _casinf 40 #define casinl _casinl 41 #define catan _catan 42 #define catanf _catanf 43 #define catanl _catanl 44 45 #define scalbn _scalbn 46 #define scalbnf _scalbnf 47 #define scalbnl _scalbnl 48 #define scalbln _scalbln 49 #define scalblnf _scalblnf 50 #define scalblnl _scalblnl 51 52 #define copysignl _copysignl 53 #define sqrtl _sqrtl 54 #define cbrtl _cbrtl 55 #define ceill _ceill 56 #define floorl _floorl 57 #define roundl _roundl 58 #define fmodl _fmodl 59 #define modfl _modfl 60 #define truncl _truncl 61 62 #define exp2l _exp2l 63 #define cosl _cosl 64 #define sinl _sinl 65 #define tanl _tanl 66 #define powl _powl 67 #define coshl _coshl 68 #define sinhl _sinhl 69 #define acosl _acosl 70 #define atanl _atanl 71 #define asinhl _asinhl 72 #define acoshl _acoshl 73 #define tanhl _tanhl 74 #define atanhl _atanhl 75 #define log10l _log10l 76 77 #define erfl _erfl 78 #define erfcl _erfcl 79 80 #define feclearexcept _feclearexcept 81 #define fegetenv _fegetenv 82 #define fegetexceptflag _fegetexceptflag 83 #define fegetround _fegetround 84 #define feholdexcept _feholdexcept 85 #define feraiseexcept _feraiseexcept 86 #define fesetenv _fesetenv 87 #define fesetexceptflag _fesetexceptflag 88 #define fesetround _fesetround 89 #define fetestexcept _fetestexcept 90 #define feupdateenv _feupdateenv 91 92 #define fedisableexcept _fedisableexcept 93 #define feenableexcept _feenableexcept 94 #define fegetexcept _fegetexcept 95