mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
20 lines
240 B
C
20 lines
240 B
C
/* Public domain. */
|
|
int
|
|
__mspabi_cmpf (float x, float y)
|
|
{
|
|
if (x < y)
|
|
return -1;
|
|
if (x > y)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
int
|
|
__mspabi_cmpd (double x, double y)
|
|
{
|
|
if (x < y)
|
|
return -1;
|
|
if (x > y)
|
|
return 1;
|
|
return 0;
|
|
}
|