libc/newlib/libm/machine/spu/sf_fdim.c

8 lines
105 B
C

#include <math.h>
#include "headers/fdimf.h"
float fdimf(float x, float y)
{
return _fdimf(x, y);
}