Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
fdiml.c
blob: 2697ac0a6961155044afc7dd687ac11daac60e3e [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
fdiml
(
long
double
x
,
long
double
y
)
{
return
(
isgreater
(
x
,
y
)
?
(
x
-
y
)
:
0.0L
);
}