mirror of https://github.com/PrimeDecomp/prime.git
4 lines
73 B
C
4 lines
73 B
C
|
#include <math.h>
|
||
|
|
||
|
float cosf(float x) { return (float)cos((double)x); }
|