c++ seems to want some casts in the float representation-access macros
[musl] / src / complex / ctanhl.c
1 #include "libm.h"
2
3 //FIXME
4 long double complex ctanhl(long double complex z)
5 {
6         return ctanh(z);
7 }