Issue #3366: Add expm1 function to math module. Thanks Eric Smith for
[python.git] / Modules / _math.h
blob69c96b5ab76a98f919793e67a19854925bcb36bd
1 double _Py_expm1(double x);
3 #ifdef HAVE_EXPM1
4 #define m_expm1 expm1
5 #else
6 /* if the system doesn't have expm1, use the substitute
7 function defined in Modules/_math.c. */
8 #define m_expm1 _Py_expm1
9 #endif