Files
Microtransactions64/include/libc/math.h

11 lines
150 B
C
Raw Normal View History

#pragma once
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);
float sqrtf(float);