summaryrefslogtreecommitdiff
path: root/src/boot/O2/fmodf.c
blob: 2f8aa74bfb97abf917e3a7da574ea3a35048f1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}