xref: /third_party/musl/src/complex/ccoshl.c (revision 570af302)
1#include "complex_impl.h"
2
3//FIXME
4long double complex ccoshl(long double complex z)
5{
6	return ccosh(z);
7}
8