Sign in
mojo
/
mojo-tools
/
27d0e88f9491c00c039a930683685dbcd1e75122
/
.
/
fusl
/
src
/
math
/
fdim.c
blob: 958546064389bfa3bb5bb2fc16b728726b3ea1f6 [
file
] [
log
] [
blame
]
#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
;
}