sm64pc/include/math.h

14 lines
179 B
C
Raw Normal View History

2019-08-25 04:46:40 +00:00
#ifndef _MATH_H_
#define _MATH_H_
#define M_PI 3.14159265358979323846
float sinf(float);
double sin(double);
float cosf(float);
double cos(double);
float sqrtf(float);
#endif