first commit of the new libm!
[musl] / src / complex / cimag.c
1 #include "libm.h"
2
3 double (cimag)(double complex z)
4 {
5         union dcomplex u = {z};
6         return u.a[1];
7 }