aboutsummaryrefslogtreecommitdiffstats
path: root/man3/csin.3
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-03-18 20:25:09 +0100
committerAlejandro Colomar <alx.manpages@gmail.com>2022-03-20 02:36:25 +0100
commit1ae6b2c7b818e5d8804cf8d3abfdb6fba32119db (patch)
treeed237286398c7c8d9eb4f763b171895f84a38c11 /man3/csin.3
parent3d58eb6da4c3468ca8184b1d8317c6ae7d080d7a (diff)
downloadman-pages-1ae6b2c7b818e5d8804cf8d3abfdb6fba32119db.tar.gz
Many pages: Fix style issues reported by `make lint-groff`
Plus some other found in the process. Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'man3/csin.3')
-rw-r--r--man3/csin.314
1 files changed, 8 insertions, 6 deletions
diff --git a/man3/csin.3 b/man3/csin.3
index fd06692c2f..eb96489eb9 100644
--- a/man3/csin.3
+++ b/man3/csin.3
@@ -2,7 +2,7 @@
.\"
.\" SPDX-License-Identifier: GPL-1.0-or-later
.\"
-.TH CSIN 3 2021-03-22 "" "Linux Programmer's Manual"
+.TH CSIN 3 2021-03-22 GNU "Linux Programmer's Manual"
.SH NAME
csin, csinf, csinl \- complex sine function
.SH LIBRARY
@@ -12,9 +12,9 @@ Math library
.nf
.B #include <complex.h>
.PP
-.BI "double complex csin(double complex " z ");"
+.BI "double complex csin(double complex " z );
.BI "float complex csinf(float complex " z );
-.BI "long double complex csinl(long double complex " z ");"
+.BI "long double complex csinl(long double complex " z );
.fi
.SH DESCRIPTION
These functions calculate the complex sine of
@@ -22,9 +22,11 @@ These functions calculate the complex sine of
.PP
The complex sine function is defined as:
.PP
-.nf
- csin(z) = (exp(i * z) \- exp(\-i * z)) / (2 * i)
-.fi
+.in +4n
+.EX
+csin(z) = (exp(i * z) \- exp(\-i * z)) / (2 * i)
+.EE
+.in
.SH VERSIONS
These functions first appeared in glibc in version 2.1.
.SH ATTRIBUTES