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

double fdim(double x, double y)
{
    return _fdim(x, y);
}