Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wf_fmod.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}