Fix for vendor:libc using wrong types for log and sin procs.

This commit is contained in:
Karl Zylinski
2025-01-01 21:07:44 +01:00
parent 1cf7a56ba7
commit 51e90e5e96
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -17,5 +17,5 @@ double fabs(double x);
int abs(int);
double ldexp(double, int);
double exp(double);
float log(float);
float sin(float);
double log(double);
double sin(double);