aboutsummaryrefslogtreecommitdiff
path: root/src/complex/cimagf.c
blob: cf7ac5660c8086ae28339864248e36b9e304bee9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "complex_impl.h"

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


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