aboutsummaryrefslogtreecommitdiff
path: root/src/complex/crealf.c
blob: 51cf938ed98ff34bf71ce142b4036204ac33adf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <complex.h>

float (crealf)(float complex z)
{
	return crealf(z);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif