summaryrefslogtreecommitdiff
path: root/lib/libm/creal.c
blob: 109a40bbb451f12bdb2439cbb866b84483fbc786 (plain)
1
2
3
4
5
6
7
8
9
#include "__complex.h" // for REAL_PART, double_complex

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

double creal(double complex z)
{
	double_complex w = { .z = z };
	return (REAL_PART(w));
}