Archived
1
0
Fork 0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
sm64/include/math.h
2019-08-25 00:46:40 -04:00

13 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