summaryrefslogtreecommitdiff
path: root/lib/libm/casinhl.c
blob: 73c802036e976d2706f719ee59369b90f568a227 (plain)
1
2
3
4
5
6
#include <complex.h>

long double complex casinhl(long double complex z)
{
	return -1.0L * I * casinl(z * I);
}