Files
mop3/libu/math.c
kamkow1 c8fb575bdd
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s
Change formatting rules
2026-04-24 01:54:48 +02:00

6 lines
178 B
C

#include <math.h>
double fmod(double a, double b) { return a - ((double)((long long)(a / b))) * b; }
float fmodf(float a, float b) { return a - ((float)((long)(a / b))) * b; }