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

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