aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2004-11-11 17:28:42 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2004-11-11 17:28:42 +0000
commitd39541ec4151f8c8e1b19f1ed72fd791d985b0f5 (patch)
treefd8b76bea573a05d8d3ded82ad52d6da60695a9e
parent925d4d6a89dba7e01556fdd7874c9baac23e720a (diff)
downloadman-pages-d39541ec4151f8c8e1b19f1ed72fd791d985b0f5.tar.gz
Compressed synopsis as per Fabian Kreutz's suggestion
-rw-r--r--man3/atan.34
-rw-r--r--man3/atan2.34
-rw-r--r--man3/atanh.34
-rw-r--r--man3/cabs.34
-rw-r--r--man3/cacos.34
-rw-r--r--man3/cacosh.34
-rw-r--r--man3/carg.34
-rw-r--r--man3/casin.34
-rw-r--r--man3/casinh.34
-rw-r--r--man3/catan.34
-rw-r--r--man3/catanh.34
-rw-r--r--man3/ccos.34
-rw-r--r--man3/ccosh.34
-rw-r--r--man3/cerf.38
-rw-r--r--man3/cexp.34
-rw-r--r--man3/cexp2.34
-rw-r--r--man3/cimag.34
-rw-r--r--man3/clog.34
-rw-r--r--man3/clog10.34
-rw-r--r--man3/clog2.34
-rw-r--r--man3/conj.34
-rw-r--r--man3/cpow.34
-rw-r--r--man3/cproj.34
-rw-r--r--man3/creal.34
-rw-r--r--man3/csin.34
-rw-r--r--man3/csinh.34
-rw-r--r--man3/csqrt.34
-rw-r--r--man3/ctan.34
-rw-r--r--man3/ctanh.34
-rw-r--r--man3/erf.38
-rw-r--r--man3/exp.34
-rw-r--r--man3/exp10.34
-rw-r--r--man3/exp2.34
-rw-r--r--man3/expm1.34
-rw-r--r--man3/fdim.34
-rw-r--r--man3/fma.34
-rw-r--r--man3/fmax.34
-rw-r--r--man3/fmin.34
-rw-r--r--man3/fmod.34
-rw-r--r--man3/frexp.34
-rw-r--r--man3/gamma.34
-rw-r--r--man3/hypot.34
-rw-r--r--man3/log.34
-rw-r--r--man3/log10.34
-rw-r--r--man3/log1p.34
-rw-r--r--man3/modf.34
-rw-r--r--man3/nan.34
-rw-r--r--man3/pow.34
-rw-r--r--man3/pow10.34
-rw-r--r--man3/remquo.34
-rw-r--r--man3/sin.34
-rw-r--r--man3/sincos.34
-rw-r--r--man3/sinh.34
-rw-r--r--man3/sqrt.34
-rw-r--r--man3/tan.34
-rw-r--r--man3/tanh.34
56 files changed, 116 insertions, 116 deletions
diff --git a/man3/atan.3 b/man3/atan.3
index 13151c26e9..b0f7cd3a46 100644
--- a/man3/atan.3
+++ b/man3/atan.3
@@ -36,9 +36,9 @@ atan, atanf, atanl \- arc tangent function
.B #include <math.h>
.sp
.BI "double atan(double " x );
-.sp
+.br
.BI "float atanf(float " x );
-.sp
+.br
.BI "long double atanl( long double " x );
.sp
.fi
diff --git a/man3/atan2.3 b/man3/atan2.3
index ed4ff95807..61f708eb0c 100644
--- a/man3/atan2.3
+++ b/man3/atan2.3
@@ -36,9 +36,9 @@ atan2, atan2f, atan2l \- arc tangent function of two variables
.B #include <math.h>
.sp
.BI "double atan2(double " y ", double " x );
-.sp
+.br
.BI "float atan2f(float " y ", float " x );
-.sp
+.br
.BI "long double atan2l(long double " y ", long double " x );
.sp
.fi
diff --git a/man3/atanh.3 b/man3/atanh.3
index f28ce7ce11..b780e8ce29 100644
--- a/man3/atanh.3
+++ b/man3/atanh.3
@@ -36,9 +36,9 @@ atanh, atanhf, atanhl \- inverse hyperbolic tangent function
.B #include <math.h>
.sp
.BI "double atanh(double " x );
-.sp
+.br
.BI "float atanhf(float " x );
-.sp
+.br
.BI "long double atanhl(long double " x );
.sp
.fi
diff --git a/man3/cabs.3 b/man3/cabs.3
index ff924fc4fc..2c31d7269f 100644
--- a/man3/cabs.3
+++ b/man3/cabs.3
@@ -8,9 +8,9 @@ cabs, cabsf, cabsl \- absolute value of a complex number
.B #include <complex.h>
.sp
.BI "double cabs(double complex " z );
-.sp
+.br
.BI "float cabsf(float complex " z );
-.sp
+.br
.BI "long double cabsl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/cacos.3 b/man3/cacos.3
index 13e3aacbf6..2e8630b18f 100644
--- a/man3/cacos.3
+++ b/man3/cacos.3
@@ -8,9 +8,9 @@ cacos, cacosf, cacosl \- complex arc cosine
.B #include <complex.h>
.sp
.BI "double complex cacos(double complex " z );
-.sp
+.br
.BI "float complex cacosf(float complex " z );
-.sp
+.br
.BI "long double complex cacosl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/cacosh.3 b/man3/cacosh.3
index f4780f5758..6e4501aca8 100644
--- a/man3/cacosh.3
+++ b/man3/cacosh.3
@@ -8,9 +8,9 @@ cacosh, cacoshf, cacoshl \- complex arc hyperbolic cosine
.B #include <complex.h>
.sp
.BI "double complex cacosh(double complex " z );
-.sp
+.br
.BI "float complex cacoshf(float complex " z );
-.sp
+.br
.BI "long double complex cacoshl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/carg.3 b/man3/carg.3
index 484e3d0ca7..3185c38cde 100644
--- a/man3/carg.3
+++ b/man3/carg.3
@@ -8,9 +8,9 @@ carg, cargf, cargl \- calculate the argument
.B #include <complex.h>
.sp
.BI "double carg(double complex " z ");"
-.sp
+.br
.BI "float cargf(float complex " z ");"
-.sp
+.br
.BI "long double cargl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/casin.3 b/man3/casin.3
index f5084b79ed..9799b2eb60 100644
--- a/man3/casin.3
+++ b/man3/casin.3
@@ -8,9 +8,9 @@ casin, casinf, casinl \- complex arc sine
.B #include <complex.h>
.sp
.BI "double complex casin(double complex " z );
-.sp
+.br
.BI "float complex casinf(float complex " z );
-.sp
+.br
.BI "long double complex casinl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/casinh.3 b/man3/casinh.3
index 0cc96af35b..7f819f1ea8 100644
--- a/man3/casinh.3
+++ b/man3/casinh.3
@@ -8,9 +8,9 @@ casinh, casinhf, casinhl \- complex arc sine hyperbolic
.B #include <complex.h>
.sp
.BI "double complex casinh(double complex " z );
-.sp
+.br
.BI "float complex casinhf(float complex " z );
-.sp
+.br
.BI "long double complex casinhl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/catan.3 b/man3/catan.3
index 42e12f68b5..cb360a0094 100644
--- a/man3/catan.3
+++ b/man3/catan.3
@@ -8,9 +8,9 @@ catan, catanf, catanl \- complex arc tangents
.B #include <complex.h>
.sp
.BI "double complex catan(double complex " z );
-.sp
+.br
.BI "float complex catanf(float complex " z );
-.sp
+.br
.BI "long double complex catanl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/catanh.3 b/man3/catanh.3
index a3691721e8..9e3388d88a 100644
--- a/man3/catanh.3
+++ b/man3/catanh.3
@@ -8,9 +8,9 @@ catanh, catanhf, catanhl \- complex arc tangents hyperbolic
.B #include <complex.h>
.sp
.BI "double complex catanh(double complex " z );
-.sp
+.br
.BI "float complex catanhf(float complex " z );
-.sp
+.br
.BI "long double complex catanhl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/ccos.3 b/man3/ccos.3
index 4f2ec69320..0caec5affe 100644
--- a/man3/ccos.3
+++ b/man3/ccos.3
@@ -8,9 +8,9 @@ ccos, ccosf, ccosl \- complex cosine function
.B #include <complex.h>
.sp
.BI "double complex ccos(double complex " z ");"
-.sp
+.br
.BI "float complex ccosf(float complex " z ");"
-.sp
+.br
.BI "long double complex ccosl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/ccosh.3 b/man3/ccosh.3
index 4034a06093..ca5a2aff0d 100644
--- a/man3/ccosh.3
+++ b/man3/ccosh.3
@@ -8,9 +8,9 @@ ccosh, ccoshf, ccoshl \- complex hyperbolic cosine
.B #include <complex.h>
.sp
.BI "double complex ccosh(double complex " z ");"
-.sp
+.br
.BI "float complex ccoshf(float complex " z ");"
-.sp
+.br
.BI "long double complex ccoshl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/cerf.3 b/man3/cerf.3
index cfa1de7216..25439ad952 100644
--- a/man3/cerf.3
+++ b/man3/cerf.3
@@ -8,15 +8,15 @@ cerf, cerff, cerfl, cerfc, cerfcf, cerfcl \- complex error function
.B #include <complex.h>
.sp
.BI "double complex cerf(double complex " z );
-.sp
+.br
.BI "float complex cerff(float complex " z );
-.sp
+.br
.BI "long double complex cerfl(long double complex " z );
.sp
.BI "double complex cerfc(double complex " z );
-.sp
+.br
.BI "float complex cerfcf(float complex " z );
-.sp
+.br
.BI "long double complex cerfcl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/cexp.3 b/man3/cexp.3
index 8045ed6270..c4d201496d 100644
--- a/man3/cexp.3
+++ b/man3/cexp.3
@@ -8,9 +8,9 @@ cexp, cexpf, cexpl \- complex exponential function
.B #include <complex.h>
.sp
.BI "double complex cexp(double complex " z ");"
-.sp
+.br
.BI "float complex cexpf(float complex " z ");"
-.sp
+.br
.BI "long double complex cexpl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/cexp2.3 b/man3/cexp2.3
index 496c753a6d..11bb64fbc8 100644
--- a/man3/cexp2.3
+++ b/man3/cexp2.3
@@ -8,9 +8,9 @@ cexp2, cexp2f, cexp2l \- base-2 exponent of a complex number
.B #include <complex.h>
.sp
.BI "double complex cexp2(double complex " z ");"
-.sp
+.br
.BI "float complex cexp2f(float complex " z ");"
-.sp
+.br
.BI "long double complex cexp2l(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/cimag.3 b/man3/cimag.3
index fcf359f784..ef37bcfec1 100644
--- a/man3/cimag.3
+++ b/man3/cimag.3
@@ -8,9 +8,9 @@ cimag, cimagf, cimagl \- get imaginary part of a complex number
.B #include <complex.h>
.sp
.BI "double cimag(double complex " z ");"
-.sp
+.br
.BI "float cimagf(float complex " z ");"
-.sp
+.br
.BI "long double cimagl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/clog.3 b/man3/clog.3
index f3a73795ce..8fb045c985 100644
--- a/man3/clog.3
+++ b/man3/clog.3
@@ -8,9 +8,9 @@ clog, clogf, clogl \- natural logarithm of a complex number
.B #include <complex.h>
.sp
.BI "double complex clog(double complex " z );
-.sp
+.br
.BI "float complex clogf(float complex " z );
-.sp
+.br
.BI "long double complex clogl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/clog10.3 b/man3/clog10.3
index f3b60daf4e..11689e0575 100644
--- a/man3/clog10.3
+++ b/man3/clog10.3
@@ -10,9 +10,9 @@ clog10, clog10f, clog10l \- base-10 logarithm of a complex number
.B #include <complex.h>
.sp
.BI "double complex clog10(double complex " z );
-.sp
+.br
.BI "float complex clog10f(float complex " z );
-.sp
+.br
.BI "long double complex clog10l(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/clog2.3 b/man3/clog2.3
index a963695d92..091882d880 100644
--- a/man3/clog2.3
+++ b/man3/clog2.3
@@ -8,9 +8,9 @@ clog2, clog2f, clog2l \- base-2 logarithm of a complex number
.B #include <complex.h>
.sp
.BI "double complex clog2(double complex " z );
-.sp
+.br
.BI "float complex clog2f(float complex " z );
-.sp
+.br
.BI "long double complex clog2l(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/conj.3 b/man3/conj.3
index ee82deacb9..f70cc54909 100644
--- a/man3/conj.3
+++ b/man3/conj.3
@@ -8,9 +8,9 @@ conj, conjf, conjl \- calculate the complex conjugate
.B #include <complex.h>
.sp
.BI "double complex conj(double complex " z );
-.sp
+.br
.BI "float complex conjf(float complex " z );
-.sp
+.br
.BI "long double complex conjl(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/cpow.3 b/man3/cpow.3
index 6a59bc614a..52ef42c86b 100644
--- a/man3/cpow.3
+++ b/man3/cpow.3
@@ -8,9 +8,9 @@ cpow, cpowf, cpowl \- complex power function
.B #include <complex.h>
.sp
.BI "double complex cpow(double complex " x ", complex double " z ");"
-.sp
+.br
.BI "float complex cpowf(float complex " x ", complex float " z ");"
-.sp
+.br
.BI "long double complex cpowl(long double complex " x ", complex long double " z ");"
.sp
Link with \-lm.
diff --git a/man3/cproj.3 b/man3/cproj.3
index 16750184c9..7ea4e196e3 100644
--- a/man3/cproj.3
+++ b/man3/cproj.3
@@ -8,9 +8,9 @@ cproj, cprojf, cprojl \- project into Riemann Sphere
.B #include <complex.h>
.sp
.BI "double complex cproj(double complex " z ");"
-.sp
+.br
.BI "float complex cprojf(float complex " z ");"
-.sp
+.br
.BI "long double complex cprojl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/creal.3 b/man3/creal.3
index 35986d3fde..ae340fb65e 100644
--- a/man3/creal.3
+++ b/man3/creal.3
@@ -8,9 +8,9 @@ creal, crealf, creall \- get real part of a complex number
.B #include <complex.h>
.sp
.BI "double creal(double complex " z );
-.sp
+.br
.BI "float crealf(float complex " z );
-.sp
+.br
.BI "long double creall(long double complex " z );
.sp
Link with \-lm.
diff --git a/man3/csin.3 b/man3/csin.3
index 9b8710577e..55f0814d17 100644
--- a/man3/csin.3
+++ b/man3/csin.3
@@ -8,9 +8,9 @@ csin, csinf, csinl \- complex sine function
.B #include <complex.h>
.sp
.BI "double complex csin(double complex " z ");"
-.sp
+.br
.BI "float complex csinf(float complex " z );
-.sp
+.br
.BI "long double complex csinl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/csinh.3 b/man3/csinh.3
index fa6c4f229d..c41190226b 100644
--- a/man3/csinh.3
+++ b/man3/csinh.3
@@ -8,9 +8,9 @@ csinh, csinhf, csinhl \- complex hyperbolic sine
.B #include <complex.h>
.sp
.BI "double complex csinh(double complex " z ");"
-.sp
+.br
.BI "float complex csinhf(float complex " z ");"
-.sp
+.br
.BI "long double complex csinhl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/csqrt.3 b/man3/csqrt.3
index f3629d1ab3..eae71af347 100644
--- a/man3/csqrt.3
+++ b/man3/csqrt.3
@@ -8,9 +8,9 @@ csqrt, csqrtf, csqrtl \- complex square root
.B #include <complex.h>
.sp
.BI "double complex csqrt(double complex " z ");"
-.sp
+.br
.BI "float complex csqrtf(float complex " z ");"
-.sp
+.br
.BI "long double complex csqrtl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/ctan.3 b/man3/ctan.3
index f3ed1314b1..b479fea5b0 100644
--- a/man3/ctan.3
+++ b/man3/ctan.3
@@ -8,9 +8,9 @@ ctan, ctanf, ctanl \- complex tangent function
.B #include <complex.h>
.sp
.BI "double complex ctan(double complex " z ");"
-.sp
+.br
.BI "float complex ctanf(float complex " z );
-.sp
+.br
.BI "long double complex ctanl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/ctanh.3 b/man3/ctanh.3
index c5c50b2592..631092020b 100644
--- a/man3/ctanh.3
+++ b/man3/ctanh.3
@@ -8,9 +8,9 @@ ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
.B #include <complex.h>
.sp
.BI "double complex ctanh(double complex " z ");"
-.sp
+.br
.BI "float complex ctanhf(float complex " z );
-.sp
+.br
.BI "long double complex ctanhl(long double complex " z ");"
.sp
Link with \-lm.
diff --git a/man3/erf.3 b/man3/erf.3
index 6f7e827e88..b45b2e92bb 100644
--- a/man3/erf.3
+++ b/man3/erf.3
@@ -36,15 +36,15 @@ erf, erff, erfl, erfc, erfcf, erfcl \- error function and complementary error fu
.B #include <math.h>
.sp
.BI "double erf(double " x );
-.sp
+.br
.BI "float erff(float " x );
-.sp
+.br
.BI "long double erfl(long double " x );
.sp
.BI "double erfc(double " x );
-.sp
+.br
.BI "float erfcf(float " x );
-.sp
+.br
.BI "long double erfcl(long double " x );
.sp
.fi
diff --git a/man3/exp.3 b/man3/exp.3
index 09bd7ec9a7..2ed1a44643 100644
--- a/man3/exp.3
+++ b/man3/exp.3
@@ -37,9 +37,9 @@ exp, expf, expl \- base-e exponential function
.B #include <math.h>
.sp
.BI "double exp(double " x );
-.sp
+.br
.BI "float expf(float " x );
-.sp
+.br
.BI "long double expl(long double " x );
.fi
.sp
diff --git a/man3/exp10.3 b/man3/exp10.3
index 7bea192dea..be0a24bd2d 100644
--- a/man3/exp10.3
+++ b/man3/exp10.3
@@ -38,9 +38,9 @@ exp10, exp10f, exp10l \- base-10 exponential function
.B #include <math.h>
.sp
.BI "double exp10(double " x );
-.sp
+.br
.BI "float exp10f(float " x );
-.sp
+.br
.BI "long double exp10l(long double " x );
.fi
.sp
diff --git a/man3/exp2.3 b/man3/exp2.3
index cf7b85b370..565465c0ec 100644
--- a/man3/exp2.3
+++ b/man3/exp2.3
@@ -37,9 +37,9 @@ exp2, exp2f, exp2l \- base-2 exponential function
.B #include <math.h>
.sp
.BI "double exp2(double " x );
-.sp
+.br
.BI "float exp2f(float " x );
-.sp
+.br
.BI "long double exp2l(long double " x );
.fi
.sp
diff --git a/man3/expm1.3 b/man3/expm1.3
index 75aef678f7..e740df7270 100644
--- a/man3/expm1.3
+++ b/man3/expm1.3
@@ -31,9 +31,9 @@ expm1, expm1f, expm1l \- exponential minus 1
.B #include <math.h>
.sp
.BI "double expm1(double " x );
-.sp
+.br
.BI "float expm1f(float " x );
-.sp
+.br
.BI "long double expm1l(long double " x );
.sp
.fi
diff --git a/man3/fdim.3 b/man3/fdim.3
index bfef9d6567..3919567f9d 100644
--- a/man3/fdim.3
+++ b/man3/fdim.3
@@ -8,9 +8,9 @@ fdim, fdimf, fdiml \- positive difference
.B #include <math.h>
.sp
.BI "double fdim(double " x ", double " y );
-.sp
+.br
.BI "float fdimf(float " x ", float " y );
-.sp
+.br
.BI "long double fdiml(long double " x ", long double " y );
.sp
Link with \-lm.
diff --git a/man3/fma.3 b/man3/fma.3
index 84a87bb021..49e8cf8465 100644
--- a/man3/fma.3
+++ b/man3/fma.3
@@ -9,9 +9,9 @@ fma, fmaf, fmal \- floating-point multiply and add
.B #include <math.h>
.sp
.BI "double fma(double " x ", double " y ", double " z );
-.sp
+.br
.BI "float fmaf(float " x ", float " y ", float " z );
-.sp
+.br
.BI "long double fmal(long double " x ", long double " y ", long double " z );
.fi
.sp
diff --git a/man3/fmax.3 b/man3/fmax.3
index 5705e2a58e..f06c8d5c3c 100644
--- a/man3/fmax.3
+++ b/man3/fmax.3
@@ -8,9 +8,9 @@ fmax, fmaxf, fmaxl \- find maximum value
.B #include <math.h>
.sp
.BI "double fmax(double " x ", double " y );
-.sp
+.br
.BI "float fmaxf(float " x ", float " y );
-.sp
+.br
.BI "long double fmaxl(long double " x ", long double " y );
.sp
Link with \-lm.
diff --git a/man3/fmin.3 b/man3/fmin.3
index b82d3df772..c0f0ca36ab 100644
--- a/man3/fmin.3
+++ b/man3/fmin.3
@@ -8,9 +8,9 @@ fmin, fminf, fminl \- find minimum value
.B #include <math.h>
.sp
.BI "double fmin(double " x ", double " y );
-.sp
+.br
.BI "float fminf(float " x ", float " y );
-.sp
+.br
.BI "long double fminl(long double " x ", long double " y );
.sp
Link with \-lm.
diff --git a/man3/fmod.3 b/man3/fmod.3
index 006d8a36fa..25e6be3b47 100644
--- a/man3/fmod.3
+++ b/man3/fmod.3
@@ -36,9 +36,9 @@ fmod, fmodf, fmodl \- floating-point remainder function
.B #include <math.h>
.sp
.BI "double fmod(double " x ", double " y );
-.sp
+.br
.BI "float fmodf(float " x ", float " y );
-.sp
+.br
.BI "long double fmodl(long double " x ", long double " y );
.fi
.sp
diff --git a/man3/frexp.3 b/man3/frexp.3
index 36764dfbdc..a77332ab0b 100644
--- a/man3/frexp.3
+++ b/man3/frexp.3
@@ -37,9 +37,9 @@ and integral components
.B #include <math.h>
.sp
.BI "double frexp(double " x ", int *" exp );
-.sp
+.br
.BI "float frexpf(float " x ", int *" exp );
-.sp
+.br
.BI "long double frexpl(long double " x ", int *" exp );
.fi
.sp
diff --git a/man3/gamma.3 b/man3/gamma.3
index 65346fe704..f04668323d 100644
--- a/man3/gamma.3
+++ b/man3/gamma.3
@@ -10,9 +10,9 @@ gamma, gammaf, gammal \- (logarithm of the) gamma function
.B #include <math.h>
.sp
.BI "double gamma(double " x ");"
-.sp
+.br
.BI "float gammaf(float " x ");"
-.sp
+.br
.BI "long double gammal(long double " x ");"
.sp
Link with \-lm.
diff --git a/man3/hypot.3 b/man3/hypot.3
index 457b7e0132..28e8330337 100644
--- a/man3/hypot.3
+++ b/man3/hypot.3
@@ -36,9 +36,9 @@ hypot, hypotf, hypotl \- Euclidean distance function
.B #include <math.h>
.sp
.BI "double hypot(double " x ", double " y );
-.sp
+.br
.BI "float hypotf(float " x ", float " y );
-.sp
+.br
.BI "long double hypotl (long double " x ", long double " y );
.fi
.sp
diff --git a/man3/log.3 b/man3/log.3
index ab4d2bb51e..8dce2a75f3 100644
--- a/man3/log.3
+++ b/man3/log.3
@@ -37,9 +37,9 @@ log, logf, logl \- natural logarithmic function
.B #include <math.h>
.sp
.BI "double log(double " x );
-.sp
+.br
.BI "float logf(float " x );
-.sp
+.br
.BI "long double logl(long double " x );
.fi
.sp
diff --git a/man3/log10.3 b/man3/log10.3
index 8af6f29485..185392fb3c 100644
--- a/man3/log10.3
+++ b/man3/log10.3
@@ -37,9 +37,9 @@ log10, log10f, log10l \- base-10 logarithmic function
.B #include <math.h>
.sp
.BI "double log10(double " x );
-.sp
+.br
.BI "float log10f(float " x );
-.sp
+.br
.BI "long double log10l(long double " x );
.fi
.sp
diff --git a/man3/log1p.3 b/man3/log1p.3
index b7a50a7bf2..787d7ca833 100644
--- a/man3/log1p.3
+++ b/man3/log1p.3
@@ -30,9 +30,9 @@ log1p \- logarithm of 1 plus argument
.B #include <math.h>
.sp
.BI "double log1p(double " x );
-.sp
+.br
.BI "float log1pf(float " x );
-.sp
+.br
.BI "long double log1pl(long double " x );
.sp
.fi
diff --git a/man3/modf.3 b/man3/modf.3
index f94acf54c1..941fed92b4 100644
--- a/man3/modf.3
+++ b/man3/modf.3
@@ -37,9 +37,9 @@ number
.B #include <math.h>
.sp
.BI "double modf(double " x ", double *" iptr );
-.sp
+.br
.BI "float modff(float " x ", float *" iptr );
-.sp
+.br
.BI "long double modfl(long double " x ", long double *" iptr );
.fi
.sp
diff --git a/man3/nan.3 b/man3/nan.3
index 885dd13eaa..1d37ee7028 100644
--- a/man3/nan.3
+++ b/man3/nan.3
@@ -10,9 +10,9 @@ nan, nanf, nanl \- return 'Not a Number'
.B #include <math.h>
.sp
.BI "double nan(const char *" tagp );
-.sp
+.br
.BI "float nanf(const char *" tagp );
-.sp
+.br
.BI "long double nanl(const char *" tagp );
.sp
Link with \-lm.
diff --git a/man3/pow.3 b/man3/pow.3
index db2cbe89a8..95416deaa2 100644
--- a/man3/pow.3
+++ b/man3/pow.3
@@ -36,9 +36,9 @@ pow, powf, powl \- power functions
.B #include <math.h>
.sp
.BI "double pow(double " x ", double " y );
-.sp
+.br
.BI "float powf(float " x ", float " y );
-.sp
+.br
.BI "long double powl(long double " x ", long double " y );
.fi
.sp
diff --git a/man3/pow10.3 b/man3/pow10.3
index 5f431b6e5a..1a1838765b 100644
--- a/man3/pow10.3
+++ b/man3/pow10.3
@@ -29,9 +29,9 @@ pow10, pow10f, pow10l \- base-10 power functions
.B #include <math.h>
.sp
.BI "double pow10(double " x );
-.sp
+.br
.BI "float pow10f(float " x );
-.sp
+.br
.BI "long double pow10l(long double " x );
.fi
.sp
diff --git a/man3/remquo.3 b/man3/remquo.3
index ea4911f780..05101ee97c 100644
--- a/man3/remquo.3
+++ b/man3/remquo.3
@@ -12,9 +12,9 @@ remquo, remquof, remquol \- remainder and part of quotient
.B #include <math.h>
.sp
.BI "double remquo(double " x ", double " y ", int *" quo );
-.sp
+.br
.BI "float remquof(float " x ", float " y ", int *" quo );
-.sp
+.br
.BI "long double remquol(long double " x ", long double " y ", int *" quo );
.sp
.fi
diff --git a/man3/sin.3 b/man3/sin.3
index b1691b4c44..9e7b3f2ab6 100644
--- a/man3/sin.3
+++ b/man3/sin.3
@@ -35,9 +35,9 @@ sin, sinf, sinl \- sine function
.B #include <math.h>
.sp
.BI "double sin(double " x );
-.sp
+.br
.BI "float sinf(float " x );
-.sp
+.br
.BI "long double sinl(long double " x );
.fi
.sp
diff --git a/man3/sincos.3 b/man3/sincos.3
index 9dc7a107a3..b53a5b93e5 100644
--- a/man3/sincos.3
+++ b/man3/sincos.3
@@ -9,9 +9,9 @@ sincos, sincosf, sincosl \- calculate sin and cos simultaneously
.B #include <math.h>
.sp
.BI "void sincos(double " x ", double *" sin ", double *" cos );
-.sp
+.br
.BI "void sincosf(float " x ", float *" sin ", float *" cos );
-.sp
+.br
.BI "void sincosl(long double " x ", long double *" sin ", long double *" cos );
.fi
.sp
diff --git a/man3/sinh.3 b/man3/sinh.3
index 05ac95f4b7..7a83ecd62c 100644
--- a/man3/sinh.3
+++ b/man3/sinh.3
@@ -37,9 +37,9 @@ sinh, sinhf, sinhl \- hyperbolic sine function
.B #include <math.h>
.sp
.BI "double sinh(double " x );
-.sp
+.br
.BI "float sinhf(float " x );
-.sp
+.br
.BI "long double sinhl(long double " x );
.fi
.sp
diff --git a/man3/sqrt.3 b/man3/sqrt.3
index e39fb564da..8436e2e296 100644
--- a/man3/sqrt.3
+++ b/man3/sqrt.3
@@ -35,9 +35,9 @@ sqrt, sqrtf, sqrtl \- square root function
.B #include <math.h>
.sp
.BI "double sqrt(double " x );
-.sp
+.br
.BI "float sqrtf(float " x );
-.sp
+.br
.BI "long double sqrtl(long double " x );
.fi
.sp
diff --git a/man3/tan.3 b/man3/tan.3
index c42b0a57c7..74c0a27b40 100644
--- a/man3/tan.3
+++ b/man3/tan.3
@@ -36,9 +36,9 @@ tan, tanf, tanl \- tangent function
.B #include <math.h>
.sp
.BI "double tan(double " x );
-.sp
+.br
.BI "float tanf(float " x );
-.sp
+.br
.BI "long double tanl(long double " x );
.fi
.sp
diff --git a/man3/tanh.3 b/man3/tanh.3
index 45a29757b6..c047cda5d1 100644
--- a/man3/tanh.3
+++ b/man3/tanh.3
@@ -36,9 +36,9 @@ tanh, tanhf, tanhl \- hyperbolic tangent function
.B #include <math.h>
.sp
.BI "double tanh(double " x );
-.sp
+.br
.BI "float tanhf(float " x );
-.sp
+.br
.BI "long double tanhl(long double " x );
.fi
.sp