summaryrefslogtreecommitdiff
path: root/src/complex/creal.c
blob: 2bb91812dac9fb779d243f4fde615c50ed3bf718 (plain) (blame)
1
2
3
4
5
6
#include <complex.h>

double creal(double complex z)
{
	return z;
}