diff options
Diffstat (limited to 'winsup/mingw/mingwex/complex/cimag.c')
-rw-r--r-- | winsup/mingw/mingwex/complex/cimag.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/winsup/mingw/mingwex/complex/cimag.c b/winsup/mingw/mingwex/complex/cimag.c new file mode 100644 index 000000000..b6b32561c --- /dev/null +++ b/winsup/mingw/mingwex/complex/cimag.c @@ -0,0 +1,6 @@ +#include <complex.h> +double __attribute__ ((const)) cimag (double complex _Z) +{ + return __imag__ _Z; +} + |