Files
ac-decomp/include/MSL_C/math.h
T
2023-05-20 21:14:40 -04:00

21 lines
244 B
C

#ifndef MATH_H
#define MATH_H
#include "types.h"
#include "MSL_C/w_math.h"
#ifdef __cplusplus
extern "C" {
#endif
#define PI 3.14159265358979323846
#define F_PI ((f32)PI)
#define SQRTF(f) (__frsqrte(f))
#ifdef __cplusplus
}
#endif
#endif