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