Files
pokerevo/include/MSL_C/math.h

18 lines
259 B
C

#ifndef POKEREVO_MATH_H
#define POKEREVO_MATH_H
#ifdef __cplusplus
extern "C" {
#endif
double atan2(double y, double x);
double tan(double x);
double acos(double);
double sqrt(double);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_MATH_H