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

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

float fdimf(float x, float y)
{
    return _fdimf(x, y);
}