Sort boot files (#260)

This commit is contained in:
Tharo
2021-08-11 03:15:31 +01:00
committed by GitHub
parent 9333306738
commit 82cc274b6a
85 changed files with 213 additions and 176 deletions
+12
View File
@@ -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;
}