diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-10-27 19:26:15 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-10-27 19:26:15 +0000 |
commit | 080db3309aba9324a98158c69a9a3b7feb3de108 (patch) | |
tree | 0827abe5d69f308e909238b9e27a9d70a32cf52b /lib/libm | |
parent | 0f52640deabb84985fd59b07cf9cc26940d1bbae (diff) |
reorder the log functions slightly; from thomas pfaff
Diffstat (limited to 'lib/libm')
-rw-r--r-- | lib/libm/man/exp.3 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libm/man/exp.3 b/lib/libm/man/exp.3 index 119d2d4987d..39037e299d5 100644 --- a/lib/libm/man/exp.3 +++ b/lib/libm/man/exp.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: exp.3,v 1.21 2009/10/24 10:06:02 jmc Exp $ +.\" $OpenBSD: exp.3,v 1.22 2009/10/27 19:26:14 jmc Exp $ .\" .\" Copyright (c) 1985, 1991 Regents of the University of California. .\" All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)exp.3 6.12 (Berkeley) 7/31/91 .\" -.Dd $Mdocdate: October 24 2009 $ +.Dd $Mdocdate: October 27 2009 $ .Dt EXP 3 .Os .Sh NAME @@ -131,24 +131,24 @@ function is a single precision version of .Fn log . .Pp The -.Fn log10 +.Fn log2 function computes the value of the logarithm of argument .Fa x -to base 10. +to base 2. The -.Fn log10f +.Fn log2f function is a single precision version of -.Fn log10 . +.Fn log2 . .Pp The -.Fn log2 +.Fn log10 function computes the value of the logarithm of argument .Fa x -to base 2. +to base 10. The -.Fn log2f +.Fn log10f function is a single precision version of -.Fn log2 . +.Fn log10 . .Pp The .Fn log1p |