root/src/system/libroot/posix/musl/complex/creal.c
#include <complex.h>

double (creal)(double complex z)
{
        return creal(z);
}