From: nsz Date: Tue, 27 Mar 2012 20:49:37 +0000 (+0200) Subject: math: fix a regression in powl and do some cleanups X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=cf682072ce16080ebe199e5055f686d81c8416ce;hp=cf682072ce16080ebe199e5055f686d81c8416ce math: fix a regression in powl and do some cleanups previously a division was accidentally turned into integer div (w = -i/NXT;) instead of long double div (w = -i; w /= NXT;) ---