#ifndef MATH_H #define MATH_H #include #ifndef M_PI #define M_PI 3.14159265358979323846 #endif #ifndef _GNU_SOURCE void sincosf(float a, float* s, float* c); #endif #endif