mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-11 11:55:07 -05:00
14 lines
179 B
C
14 lines
179 B
C
#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
|