add _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everything
[musl] / src / complex / csinhl.c
1 #include "libm.h"
2
3 //FIXME
4 long double complex csinhl(long double complex z)
5 {
6         return csinh(z);
7 }