Math.h 183 B

1234567891011121314
  1. #ifndef MATH_H
  2. #define MATH_H
  3. #include <cmath>
  4. #ifndef M_PI
  5. #define M_PI 3.14159265358979323846
  6. #endif
  7. #ifndef _GNU_SOURCE
  8. void sincosf(float a, float* s, float* c);
  9. #endif
  10. #endif