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

w_remainder.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c87627b495eda2668a09e16e05524dc5fad967a3 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/remainder.h"

double remainder(double x, double y)
{
    return _remainder(x, y);
}