only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / complex / conjl.c
1 #include "complex_impl.h"
2
3 long double complex conjl(long double complex z)
4 {
5         return CMPLXL(creall(z), -cimagl(z));
6 }