#define _GNU_SOURCE #include void sincosf(float t, float *y, float *x) { *y = sinf(t); *x = cosf(t); }