Math.cpp 132 B

12345678
  1. #include "math/Math.h"
  2. #ifndef _GNU_SOURCE
  3. void sincosf(float a, float* s, float* c) {
  4. *s = sinf(a);
  5. *c = cosf(a);
  6. }
  7. #endif