]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Modules/_math.h
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Modules / _math.h
CommitLineData
4710c53d 1double _Py_acosh(double x);\r
2double _Py_asinh(double x);\r
3double _Py_atanh(double x);\r
4double _Py_expm1(double x);\r
5double _Py_log1p(double x);\r
6\r
7#ifdef HAVE_ACOSH\r
8#define m_acosh acosh\r
9#else\r
10/* if the system doesn't have acosh, use the substitute\r
11 function defined in Modules/_math.c. */\r
12#define m_acosh _Py_acosh\r
13#endif\r
14\r
15#ifdef HAVE_ASINH\r
16#define m_asinh asinh\r
17#else\r
18/* if the system doesn't have asinh, use the substitute\r
19 function defined in Modules/_math.c. */\r
20#define m_asinh _Py_asinh\r
21#endif\r
22\r
23#ifdef HAVE_ATANH\r
24#define m_atanh atanh\r
25#else\r
26/* if the system doesn't have atanh, use the substitute\r
27 function defined in Modules/_math.c. */\r
28#define m_atanh _Py_atanh\r
29#endif\r
30\r
31#ifdef HAVE_EXPM1\r
32#define m_expm1 expm1\r
33#else\r
34/* if the system doesn't have expm1, use the substitute\r
35 function defined in Modules/_math.c. */\r
36#define m_expm1 _Py_expm1\r
37#endif\r
38\r
39#ifdef HAVE_LOG1P\r
40#define m_log1p log1p\r
41#else\r
42/* if the system doesn't have log1p, use the substitute\r
43 function defined in Modules/_math.c. */\r
44#define m_log1p _Py_log1p\r
45#endif\r