mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-29 16:14:59 -04:00
13 lines
183 B
C
13 lines
183 B
C
#include "libc/math.h"
|
|
#include "MSL_C/w_math.h"
|
|
f32 fatan2(f32 x, f32 y){
|
|
return atan2(x, y);
|
|
}
|
|
f64 fsqrt(f32 x){
|
|
return sqrtf(x);
|
|
}
|
|
|
|
f32 facos(f32 x){
|
|
return acos(x);
|
|
}
|