1 /* $NetBSD: namespace.h,v 1.2 2007/08/20 16:01:39 drochner Exp $ */ 2 3 #define atan2 _atan2 4 #define atan2f _atan2f 5 #define hypot _hypot 6 #define hypotf _hypotf 7 8 #define exp _exp 9 #define expf _expf 10 #define log _log 11 #define logf _logf 12 13 #if 0 /* not yet - need to review use in machdep code first */ 14 #define sin _sin 15 #define sinf _sinf 16 #define cos _cos 17 #define cosf _cosf 18 #endif /* notyet */ 19 #define sinh _sinh 20 #define sinhf _sinhf 21 #define cosh _cosh 22 #define coshf _coshf 23 #define asin _asin 24 #define asinf _asinf 25 26 #define casin _casin 27 #define casinf _casinf 28 #define catan _catan 29 #define catanf _catanf 30