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

//FIXME
long double complex cexpl(long double complex z)
{
	return cexp(z);
}


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