make getservby*_r return error code rather than -1 (and using errno)
[musl] / src / complex / cexpl.c
1 #include "libm.h"
2
3 //FIXME
4 long double complex cexpl(long double complex z)
5 {
6         return cexp(z);
7 }