implement sincosf and sincosl functions; add prototypes
[musl] / src / linux / sincosl.c
1 #define _GNU_SOURCE
2 #include <math.h>
3
4 void sincosl(long double t, long double *y, long double *x)
5 {
6         *y = sinl(t);
7         *x = cosl(t);
8 }