blob: 66cf18b51ef828d8a4736925bf960e54c0c9255d [file] [log] [blame]
#include <math.h>
float
fdimf (float x, float y)
{
return (isgreater(x, y) ? (x - y) : 0.0F);
}