summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/w_remainder.c
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);
}