summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/complex/creal.c
blob: 6905b7e2a4630f9e2bccb48c8f253fe135b0cbcf (plain)
1
2
3
4
5
6
#include <complex.h>
double __attribute__ ((const)) creal (double complex _Z)
{
  return __real__ _Z;
}