diff options
author | mike <mike@FreeBSD.org> | 2001-11-15 02:05:03 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2001-11-15 02:05:03 +0000 |
commit | 77077eee7a0b8b2526ff4a29cc2169f2ff32443a (patch) | |
tree | 65345c27494b147fb94a03b0e7ab6a7afb3725cd /lib/libc/stdlib/abs.3 | |
parent | 98952b6123387585d404e1f5fb784fb2fba20957 (diff) | |
download | FreeBSD-src-77077eee7a0b8b2526ff4a29cc2169f2ff32443a.zip FreeBSD-src-77077eee7a0b8b2526ff4a29cc2169f2ff32443a.tar.gz |
o Implement imaxabs(), imaxdiv(), llabs(), lldiv().
o Update abs(3), div(3), labs(3), ldiv(3) to reflect standards
conformance and add additional references.
Reviewed by: bde, wollman
Diffstat (limited to 'lib/libc/stdlib/abs.3')
-rw-r--r-- | lib/libc/stdlib/abs.3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/stdlib/abs.3 b/lib/libc/stdlib/abs.3 index 92d9c12..9dee8ed 100644 --- a/lib/libc/stdlib/abs.3 +++ b/lib/libc/stdlib/abs.3 @@ -36,7 +36,7 @@ .\" @(#)abs.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd November 14, 2001 .Dt ABS 3 .Os .Sh NAME @@ -66,12 +66,14 @@ the absolute value. .Xr fabs 3 , .Xr floor 3 , .Xr hypot 3 , +.Xr imaxabs 3 , .Xr labs 3 , +.Xr llabs 3 , .Xr math 3 .Sh STANDARDS The .Fn abs function conforms to -.St -isoC . +.St -isoC-99 . .Sh BUGS The absolute value of the most negative integer remains negative. |