Index: fusl/src/complex/cpowf.c |
diff --git a/fusl/src/complex/cpowf.c b/fusl/src/complex/cpowf.c |
index 53c65dcb1112aab6846ede9bfb36c9b1106b1371..c852b107ed4386344bb4460cbcd292e223dca724 100644 |
--- a/fusl/src/complex/cpowf.c |
+++ b/fusl/src/complex/cpowf.c |
@@ -1,6 +1,5 @@ |
#include "libm.h" |
-float complex cpowf(float complex z, float complex c) |
-{ |
- return cexpf(c * clogf(z)); |
+float complex cpowf(float complex z, float complex c) { |
+ return cexpf(c * clogf(z)); |
} |