mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
a320ae56ff
* wip * bunch of MSL_C files thanks to pikmin2 decomp for their work * format / asm * progress * fix * fix remove-asm to work with C files * init / start
7 lines
163 B
C
7 lines
163 B
C
#include "fdlibm.h"
|
|
|
|
/* 8036C760-8036C780 3670A0 0020+00 0/0 8/8 0/0 .text fmod */
|
|
double fmod(double x, double y) {
|
|
return __ieee754_fmod(x, y);
|
|
}
|