revert COPYRIGHT file changes in preparation to merge nsz's math branch
[musl] / src / linux / sincosf.c
1 #define _GNU_SOURCE
2 #include <math.h>
3
4 void sincosf(float t, float *y, float *x)
5 {
6         *y = sinf(t);
7         *x = cosf(t);
8 }