Files
HackerSM64/include/libc/math.h

16 lines
212 B
C
Raw Permalink Normal View History

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