cpow.3: Use 'complex' after the type consistently

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-05-09 23:39:24 +02:00 committed by Michael Kerrisk
parent 7dfd227b7e
commit 54dde4f8e3
1 changed files with 3 additions and 3 deletions

View File

@ -11,10 +11,10 @@ cpow, cpowf, cpowl \- complex power function
.nf
.B #include <complex.h>
.PP
.BI "double complex cpow(double complex " x ", complex double " z ");"
.BI "float complex cpowf(float complex " x ", complex float " z ");"
.BI "double complex cpow(double complex " x ", double complex " z );
.BI "float complex cpowf(float complex " x ", float complex " z );
.BI "long double complex cpowl(long double complex " x ,
.BI " complex long double " z ");"
.BI " long double complex " z );
.PP
Link with \fI\-lm\fP.
.fi