mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-18 04:43:06 +03:00
8 lines
108 B
C
8 lines
108 B
C
|
#include <math.h>
|
||
|
|
||
|
double
|
||
|
fdim (double x, double y)
|
||
|
{
|
||
|
return (isgreater(x, y) ? (x - y) : 0.0);
|
||
|
}
|