This website requires JavaScript.
Explore
Help
Sign In
libs
/
newlib-cygwin
mirror of
git://sourceware.org/git/newlib-cygwin.git
Watch
4
Star
0
Fork
You've already forked newlib-cygwin
0
Code
Issues
Projects
Releases
Wiki
Activity
dcbe33d83a
newlib-cygwin
/
winsup
/
mingw
/
mingwex
/
math
/
fdim.c
8 lines
101 B
C
Raw
Blame
History
#
include
<math.h>
double
fdim
(
double
x
,
double
y
)
{
return
(
isgreater
(
x
,
y
)
?
(
x
-
y
)
:
0.0
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink