newlib/winsup/mingw/mingwex/complex/creal.c

7 lines
105 B
C

#include <complex.h>
double __attribute__ ((const)) creal (double complex _Z)
{
return __real__ _Z;
}