diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-18 23:07:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-18 23:07:26 +0200 |
commit | 93f8a2e834eed69aff7ef3be8c2baba14bab0658 (patch) | |
tree | 347b5239f26d3b5f526fffcf7afe151e83124a61 /libm | |
parent | 21730caa6647f645974e132ca8afec79b4eeab2b (diff) |
convert // comments to /**/; remove empty #if/#endif pairs. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libm')
-rw-r--r-- | libm/e_lgamma_r.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libm/e_lgamma_r.c b/libm/e_lgamma_r.c index 55f656638..2b1fde78c 100644 --- a/libm/e_lgamma_r.c +++ b/libm/e_lgamma_r.c @@ -356,9 +356,10 @@ strong_alias(__ieee754_lgamma, gamma) #endif -// FIXME! Looks like someone just used __ieee754_gamma_r, -// believing it's a "true" gamma function, but it was not! -// Our tgamma is WRONG. +/* FIXME! Looks like someone just used __ieee754_gamma_r, + * believing it's a "true" gamma function, but it was not! + * Our tgamma is WRONG. + */ /* double tgamma(double x) * Return the Gamma function of x. |