Super Mario 64 Source
A Super Mario 64 decompilation, brought to you by a bunch of clever folks.
math.h
Go to the documentation of this file.
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
float sqrtf(float)
Definition: sqrtf.c:8
float sinf(float)
Definition: sinf.c:36
double cos(double)
float cosf(float)
Definition: cosf.c:36
double sin(double)