aboutsummaryrefslogtreecommitdiff
path: root/src/complex/csinhl.c
blob: 1983c3ba54e70d8a1ce29b53ae2032ac5dec9dbe (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 csinhl(long double complex z)
{
	return csinh(z);
}


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