Index: fusl/src/complex/conj.c |
diff --git a/fusl/src/complex/conj.c b/fusl/src/complex/conj.c |
index 0b3f5f46306c78086e026c7d61a0f7b8390dea4e..b544034984f98fcc24d6fc21309a590082f1e46f 100644 |
--- a/fusl/src/complex/conj.c |
+++ b/fusl/src/complex/conj.c |
@@ -1,6 +1,5 @@ |
#include "libm.h" |
-double complex conj(double complex z) |
-{ |
- return CMPLX(creal(z), -cimag(z)); |
+double complex conj(double complex z) { |
+ return CMPLX(creal(z), -cimag(z)); |
} |