mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
8 lines
107 B
C
8 lines
107 B
C
![]() |
#include <math.h>
|
||
|
|
||
|
float
|
||
|
fdimf (float x, float y)
|
||
|
{
|
||
|
return (isgreater(x, y) ? (x - y) : 0.0F);
|
||
|
}
|