11 lines
146 B
C
11 lines
146 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
double fdim(double x, double y)
|
||
|
{
|
||
|
if (isnan(x))
|
||
|
return x;
|
||
|
if (isnan(y))
|
||
|
return y;
|
||
|
return x > y ? x - y : 0;
|
||
|
}
|