diff options
Diffstat (limited to 'libc-top-half/musl/src/complex/clogf.c')
-rw-r--r-- | libc-top-half/musl/src/complex/clogf.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/complex/clogf.c b/libc-top-half/musl/src/complex/clogf.c new file mode 100644 index 0000000..0389d47 --- /dev/null +++ b/libc-top-half/musl/src/complex/clogf.c @@ -0,0 +1,12 @@ +#include "complex_impl.h" + +// FIXME + +float complex clogf(float complex z) +{ + float r, phi; + + r = cabsf(z); + phi = cargf(z); + return CMPLXF(logf(r), phi); +} |