Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
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
;
}