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