summaryrefslogtreecommitdiff
path: root/lib/libm/cimag.c
blob: 88b5fd58acd67862ee769784a24ec38c56190d66 (plain)
1
2
3
4
5
6
7
8
#include <complex.h>
#include "__complex.h"

double cimag(double complex z)
{
	double_complex w = { .z = z };
	return (IMAG_PART(w));
}