#ifndef MATH_H #define MATH_H #define M_PI 3.14159265358979323846 float sinf(float x); //official name: fsin float cosf(float x); float sqrtf(float x); #endif