Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/libc/math.h
7857 views
1
#ifndef MATH_H
2
#define MATH_H
3
4
#define M_PI 3.14159265358979323846
5
6
float sinf(float);
7
double sin(double);
8
float cosf(float);
9
double cos(double);
10
11
float sqrtf(float);
12
13
#endif
14
15