xref: /netbsd/lib/libm/src/namespace.h (revision 6550d01e)
1 /* $NetBSD: namespace.h,v 1.3 2010/04/23 19:17:07 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 #define finite _finite
19 #define finitef _finitef
20 #endif /* notyet */
21 #define sinh _sinh
22 #define sinhf _sinhf
23 #define cosh _cosh
24 #define coshf _coshf
25 #define asin _asin
26 #define asinf _asinf
27 
28 #define casin _casin
29 #define casinf _casinf
30 #define catan _catan
31 #define catanf _catanf
32 
33 #define scalbn _scalbn
34 #define scalbnf _scalbnf
35