summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/wf_fmod.c
blob: b7b8c27dfec5ac9b02f81a16e5bec01b7fe59b73 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/fmodf.h"

float fmodf(float x, float y)
{
    return _fmodf(x, y);
}