Skip to content
Snippets Groups Projects
Commit 0d6116d8 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

py/modmath: Make expm1() be in MICROPY_PY_MATH_SPECIAL_FUNCTIONS.

parent 0aff87b8
No related branches found
No related tags found
No related merge requests found
......@@ -65,8 +65,10 @@ MATH_FUN_1(sqrt, sqrt)
MATH_FUN_2(pow, pow)
/// \function exp(x)
MATH_FUN_1(exp, exp)
#if MICROPY_PY_MATH_SPECIAL_FUNCTIONS
/// \function expm1(x)
MATH_FUN_1(expm1, expm1)
#endif
/// \function log2(x)
MATH_FUN_1(log2, log2)
/// \function log10(x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment