1 2 3 4 5 6 7 8
#define _GNU_SOURCE #include <math.h> void sincosf(float t, float *y, float *x) { *y = sinf(t); *x = cosf(t); }