2bfc486267d3b55c064f3b8e10d0edcfab370e69
[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 }