1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-12-02 15:55:59 +00:00
oot/src/code/fmodf.c

13 lines
158 B
C
Raw Normal View History

2022-03-01 19:29:42 +00:00
#include "global.h"
f32 fmodf(f32 x, f32 y) {
s32 quot;
if (y == 0.0f) {
return 0.0f;
}
quot = x / y;
return x - (quot * y);
}