diff options
author | 2003-06-26 23:04:02 +0000 | |
---|---|---|
committer | 2003-06-26 23:04:02 +0000 | |
commit | c56c1de0341830a9ecbf7aadbf42c6262a6798f3 (patch) | |
tree | c5ef12fd65ee13ba2651cb4d9d198ad8a75d3fce | |
parent | Better value for vax MAXFLOAT (diff) | |
download | wireguard-openbsd-c56c1de0341830a9ecbf7aadbf42c6262a6798f3.tar.xz wireguard-openbsd-c56c1de0341830a9ecbf7aadbf42c6262a6798f3.zip |
cabsf takes complex float not double
-rw-r--r-- | lib/libm/man/hypot.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/man/hypot.3 b/lib/libm/man/hypot.3 index bdff83148e1..bd96381afa0 100644 --- a/lib/libm/man/hypot.3 +++ b/lib/libm/man/hypot.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: hypot.3,v 1.12 2003/06/02 20:18:41 millert Exp $ +.\" $OpenBSD: hypot.3,v 1.13 2003/06/26 23:04:02 jason Exp $ .\" Copyright (c) 1985, 1991 Regents of the University of California. .\" All rights reserved. .\" @@ -46,7 +46,7 @@ .Ft double .Fn cabs "struct complex { double x; double y; } z" .Ft float -.Fn cabsf "struct complex { double x; double y; } z" +.Fn cabsf "struct complex { float x; float y; } z" .Sh DESCRIPTION The .Fn hypot |