summaryrefslogtreecommitdiff
path: root/lib/libm/cimagl.c
blob: 553f7da14b9bc04bb2a9f5a1477fae07d926d8f6 (plain)
1
2
3
4
5
6
7
8
9
#include "__complex.h" // for IMAG_PART, long_double_complex

#include <complex.h> // for cimagl, complex

long double cimagl(long double complex z)
{
	long_double_complex w = { .z = z };
	return IMAG_PART(w);
}