mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 15:55:59 +00:00
13 lines
158 B
C
13 lines
158 B
C
|
#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);
|
||
|
}
|