#include "math/Math.h"

#ifndef _GNU_SOURCE
void sincosf(float a, float* s, float* c) {
    *s = sinf(a);
    *c = cosf(a);
}
#endif