Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
complex
/
cpowf.c
blob: 53c65dcb1112aab6846ede9bfb36c9b1106b1371 [
file
]
#include
"libm.h"
float
complex cpowf
(
float
complex z
,
float
complex c
)
{
return
cexpf
(
c
*
clogf
(
z
));
}