sm64pc/include/libc/math.h

14 lines
175 B
C
Raw Normal View History

2019-11-03 19:36:27 +00:00
#ifndef MATH_H
#define MATH_H
2019-08-25 04:46:40 +00:00
#define M_PI 3.14159265358979323846
float sinf(float);
double sin(double);
float cosf(float);
double cos(double);
float sqrtf(float);
#endif