b69ffce90126d3ff918abe64e0a5d7afe16cf4cd
[musl] / src / linux / sincos.c
1 #define _GNU_SOURCE
2 #include <math.h>
3
4 void sincos(double t, double *y, double *x)
5 {
6         *y = sin(t);
7         *x = cos(t);
8 }