11 lines
136 B
C
11 lines
136 B
C
![]() |
#include <math.h>
|
||
|
|
||
|
double fdim(double x, double y)
|
||
|
{
|
||
|
if (isnan(x))
|
||
|
return x;
|
||
|
if (isnan(y))
|
||
|
return y;
|
||
|
return x > y ? x - y : 0;
|
||
|
}
|