diff options
author | ru <ru@FreeBSD.org> | 2003-03-02 21:04:21 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-03-02 21:04:21 +0000 |
commit | ea25d256eaf822d21dc66ef7be2665be6780ceea (patch) | |
tree | 99e6d2a9e9f995abd5408966e3451360423a5f7a /lib | |
parent | 5ed5e586983b902ab964ec76cc68ac4e3effbc39 (diff) | |
download | FreeBSD-src-ea25d256eaf822d21dc66ef7be2665be6780ceea.zip FreeBSD-src-ea25d256eaf822d21dc66ef7be2665be6780ceea.tar.gz |
mdoc(7) police: Nits.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/msun/man/lgamma.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/msun/man/lgamma.3 b/lib/msun/man/lgamma.3 index 0ebb9d0..e950908 100644 --- a/lib/msun/man/lgamma.3 +++ b/lib/msun/man/lgamma.3 @@ -56,19 +56,19 @@ .Ft double .Fn lgamma "double x" .Ft double -.Fn lgamma_r "double x, int *signgamp" +.Fn lgamma_r "double x" "int *signgamp" .Ft float .Fn lgammaf "float x" .Ft float -.Fn lgammaf_r "float x, int *signgamp" +.Fn lgammaf_r "float x" "int *signgamp" .Ft double .Fn gamma "double x" .Ft double -.Fn gamma_r "double x, int *signgamp" +.Fn gamma_r "double x" "int *signgamp" .Ft float .Fn gammaf "float x" .Ft float -.Fn gammaf_r "float x, int *signgamp" +.Fn gammaf_r "float x" "int *signgamp" .Ft double .Fn tgamma "double x" .Sh DESCRIPTION @@ -97,7 +97,7 @@ provide the same functionality as .Fn lgamma x and .Fn lgammaf x -but the caller must provide an integer to store the sign of \(*G(x) +but the caller must provide an integer to store the sign of \(*G(x). .Pp .Fn gamma , .Fn gammaf , @@ -138,12 +138,12 @@ Exponentiation of will lose up to 10 significant bits. .Sh RETURN VALUES .Fn gamma , -.Fn gamma_r, +.Fn gamma_r , .Fn gammaf , .Fn gammaf_r , .Fn lgamma , .Fn lgamma_r , -.Fn lgammaf, +.Fn lgammaf , and .Fn lgammaf_r return appropriate values unless an argument is out of range. |