POK
namespace.h
1 /*
2  * POK header
3  *
4  * The following file is a part of the POK project. Any modification should
5  * made according to the POK licence. You CANNOT use this file or a part of
6  * this file is this part of a file for your own project
7  *
8  * For more information on the POK licence, please see our LICENCE FILE
9  *
10  * Please follow the coding guidelines described in doc/CODING_GUIDELINES
11  *
12  * Copyright (c) 2007-2009 POK team
13  *
14  * Created by julien on Fri Jan 30 14:41:34 2009
15  */
16 
17 /* $NetBSD: namespace.h,v 1.2 2007/08/20 16:01:39 drochner Exp $ */
18 
19 /*
20  * #define atan2 _atan2
21  * #define atan2f _atan2f
22  */
23 #define hypot _hypot
24 #define hypotf _hypotf
25 
26 #define exp _exp
27 #define expf _expf
28 #define log _log
29 #define logf _logf
30 
31 #if 0 /* not yet - need to review use in machdep code first */
32 #define sin _sin
33 #define sinf _sinf
34 #define cos _cos
35 #define cosf _cosf
36 #endif /* notyet */
37 #define sinh _sinh
38 #define sinhf _sinhf
39 #define cosh _cosh
40 #define coshf _coshf
41 #define asin _asin
42 #define asinf _asinf
43 
44 #define casin _casin
45 #define casinf _casinf
46 #define catan _catan
47 #define catanf _catanf