diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-23 13:59:14 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-23 13:59:14 +0000 |
commit | d67441de1857d255d937008135505055407bd9dd (patch) | |
tree | aba7e31fde272fa8393f20856e1bc4123bc1ebbf /py/builtinmath.c | |
parent | 12140288428da312158e3ef86faf7bae0dc408e8 (diff) | |
parent | 1ea8fcfae4cfebaf064f14d2bf1602aba137f820 (diff) | |
download | micropython-d67441de1857d255d937008135505055407bd9dd.tar.gz micropython-d67441de1857d255d937008135505055407bd9dd.zip |
Merge pull request #365 from xbe/tgamma
py/builtinmath.c: use tgamma() instead of gamma().
Diffstat (limited to 'py/builtinmath.c')
-rw-r--r-- | py/builtinmath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinmath.c b/py/builtinmath.c index fa6a99f762..b814822531 100644 --- a/py/builtinmath.c +++ b/py/builtinmath.c @@ -57,7 +57,7 @@ MATH_FUN_1(trunc, trunc) MATH_FUN_2(ldexp, ldexp) MATH_FUN_1(erf, erf) MATH_FUN_1(erfc, erfc) -MATH_FUN_1(gamma, gamma) +MATH_FUN_1(gamma, tgamma) MATH_FUN_1(lgamma, lgamma) //TODO: factorial, fsum |