From eb41275b1c84d8c4fc67418316f3d89a5aa89006 Mon Sep 17 00:00:00 2001 From: Kat Richey Date: Sat, 28 May 2022 13:22:05 -0500 Subject: [PATCH] Added missing functions --- include/complex.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/complex.h b/include/complex.h index deac1ee..51fafb3 100644 --- a/include/complex.h +++ b/include/complex.h @@ -118,4 +118,8 @@ double complex csqrt(double complex); float complex csqrtf(float complex); long double complex csqrtl(long double complex); +double complex cpow(double complex, double complex); +float complex cpowf(float complex, float complex); +long double complex cpowl(long double complex, long double complex); + #endif \ No newline at end of file