From b18f2299302b0a9753621937d5b858bd9fefaa90 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 21 Nov 2001 16:19:50 +0000 Subject: [PATCH] mdoc(7) police: fixed typos and minor markup nits. --- lib/libc/stdlib/imaxabs.3 | 4 ++-- lib/libc/stdlib/imaxdiv.3 | 16 +++++++++------- lib/libc/stdlib/llabs.3 | 2 +- lib/libc/stdlib/lldiv.3 | 16 +++++++++------- 4 files changed, 21 insertions(+), 17 deletions(-) diff --git a/lib/libc/stdlib/imaxabs.3 b/lib/libc/stdlib/imaxabs.3 index 3b92563ce29b..430f873280f5 100644 --- a/lib/libc/stdlib/imaxabs.3 +++ b/lib/libc/stdlib/imaxabs.3 @@ -34,7 +34,7 @@ .Lb libc .Sh SYNOPSIS .In inttypes.h -.Ft "intmax_t" +.Ft intmax_t .Fn imaxabs "intmax_t j" .Sh DESCRIPTION The @@ -50,7 +50,7 @@ function returns the absolute value of .Xr math 3 .Sh STANDARDS The -.Fm imaxabs +.Fn imaxabs function conforms to .St -isoC-99 . .Sh HISTORY diff --git a/lib/libc/stdlib/imaxdiv.3 b/lib/libc/stdlib/imaxdiv.3 index b451064c0941..0ee0971a81be 100644 --- a/lib/libc/stdlib/imaxdiv.3 +++ b/lib/libc/stdlib/imaxdiv.3 @@ -34,8 +34,8 @@ .Lb libc .Sh SYNOPSIS .In inttypes.h -.Ft "imaxdiv_t" -.Fn imaxabs "intmax_t numer" "intmax_t denom" +.Ft imaxdiv_t +.Fn imaxdiv "intmax_t numer" "intmax_t denom" .Sh DESCRIPTION The .Fn imaxdiv @@ -43,17 +43,19 @@ function computes the value of .Fa numer divided by .Fa denom -and returns the stored result in the form of the imaxdiv_t type. +and returns the stored result in the form of the +.Vt imaxdiv_t +type. .Pp -The imaxdiv_t type is defined as: -.Pp -.Bd -literal -offset indent -compact +The +.Vt imaxdiv_t +type is defined as: +.Bd -literal -offset indent typedef struct { intmax_t quot; /* Quotient. */ intmax_t rem; /* Remainder. */ } imaxdiv_t; .Ed -.Pp .Sh SEE ALSO .Xr div 3 , .Xr ldiv 3 , diff --git a/lib/libc/stdlib/llabs.3 b/lib/libc/stdlib/llabs.3 index b417a07ef3fe..8c031a940d6f 100644 --- a/lib/libc/stdlib/llabs.3 +++ b/lib/libc/stdlib/llabs.3 @@ -50,7 +50,7 @@ function returns the absolute value of .Xr math 3 .Sh STANDARDS The -.Fm llabs +.Fn llabs function conforms to .St -isoC-99 . .Sh HISTORY diff --git a/lib/libc/stdlib/lldiv.3 b/lib/libc/stdlib/lldiv.3 index 980ab67695d9..976a997b9cc8 100644 --- a/lib/libc/stdlib/lldiv.3 +++ b/lib/libc/stdlib/lldiv.3 @@ -34,8 +34,8 @@ .Lb libc .Sh SYNOPSIS .In stdlib.h -.Ft "lldiv_t" -.Fn llabs "long long numer" "long long denom" +.Ft lldiv_t +.Fn lldiv "long long numer" "long long denom" .Sh DESCRIPTION The .Fn lldiv @@ -43,17 +43,19 @@ function computes the value of .Fa numer divided by .Fa denom -and returns the stored result in the form of the lldiv_t type. +and returns the stored result in the form of the +.Vt lldiv_t +type. .Pp -The lldiv_t type is defined as: -.Pp -.Bd -literal -offset indent -compact +The +.Vt lldiv_t +type is defined as: +.Bd -literal -offset indent typedef struct { long long quot; /* Quotient. */ long long rem; /* Remainder. */ } lldiv_t; .Ed -.Pp .Sh SEE ALSO .Xr div 3 , .Xr imaxdiv 3 ,