From: Nick Bowler Date: Sat, 20 Feb 2010 23:17:00 +0000 (-0500) Subject: cmath: Fix section headings to match the C standard. X-Git-Url: https://repo.or.cz/w/altfloat.git/commitdiff_plain/4e47a0177d4575c9ffe6928727bc9ce493c82305 cmath: Fix section headings to match the C standard. --- diff --git a/Data/Floating/CMath.hs b/Data/Floating/CMath.hs index 755e6ec..9db58f7 100644 --- a/Data/Floating/CMath.hs +++ b/Data/Floating/CMath.hs @@ -17,13 +17,13 @@ module Data.Floating.CMath ( c_acosh, c_acoshf, c_asinh, c_asinhf, c_atanh, c_atanhf, c_cosh, c_coshf, c_sinh, c_sinhf, c_tanh, c_tanhf, - -- * Exponential functions + -- * Exponential and logarithmic functions c_exp, c_expf, c_exp2, c_exp2f, c_expm1, c_expm1f, c_frexp, c_frexpf, c_ilogb, c_ilogbf, c_ldexp, c_ldexpf, c_log, c_logf, c_log10, c_log10f, c_log1p, c_log1pf, c_log2, c_log2f, c_logb, c_logbf, c_modf, c_modff, c_scalbn, c_scalbnf, c_scalbln, c_scalblnf, - -- * Power and absolute value functions + -- * Power and absolute-value functions c_cbrt, c_cbrtf, c_fabs, c_fabsf, c_hypot, c_hypotf, c_pow, c_powf, c_sqrt, c_sqrtf, @@ -135,7 +135,7 @@ foreign import ccall unsafe "tanh" foreign import ccall unsafe "tanhf" c_tanhf :: CFloat -> CFloat --- 7.12.6 Exponential functions +-- 7.12.6 Exponential and logarithmic functions foreign import ccall unsafe "exp" c_exp :: CDouble -> CDouble foreign import ccall unsafe "expf" @@ -193,7 +193,7 @@ foreign import ccall unsafe "scalbln" foreign import ccall unsafe "scalblnf" c_scalblnf :: CFloat -> CLong -> CFloat --- 7.12.7 Power and absolute value functions +-- 7.12.7 Power and absolute-value functions foreign import ccall unsafe "cbrt" c_cbrt :: CDouble -> CDouble foreign import ccall unsafe "cbrtf"