root/src/system/libroot/posix/musl/complex/conjl.c
#include "complex_impl.h"

long double complex conjl(long double complex z)
{
        return CMPLXL(creall(z), -cimagl(z));
}