mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-03 10:31:10 -04:00
Sort boot files (#260)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include "global.h"
|
||||
|
||||
f32 fmodf(f32 dividend, f32 divisor) {
|
||||
s32 quotient;
|
||||
|
||||
if (divisor == 0.0f) {
|
||||
return 0.0f;
|
||||
}
|
||||
quotient = dividend / divisor;
|
||||
|
||||
return dividend - quotient * divisor;
|
||||
}
|
||||
Reference in New Issue
Block a user