diff options
author | 2009-10-27 19:26:14 +0000 | |
---|---|---|
committer | 2009-10-27 19:26:14 +0000 | |
commit | 60f2437ecb1311a9a5f055e9b2c3ffbe10f5ae39 (patch) | |
tree | d5a83b8819000a2f49bd69607f48c1930b765860 /lib | |
parent | write UNIX-domain in a more consistent way. (diff) | |
download | wireguard-openbsd-60f2437ecb1311a9a5f055e9b2c3ffbe10f5ae39.tar.xz wireguard-openbsd-60f2437ecb1311a9a5f055e9b2c3ffbe10f5ae39.zip |
reorder the log functions slightly; from thomas pfaff
Diffstat (limited to 'lib')
-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 |