Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/* Public domain.  */

int __mspabi_cmpf (float, float);

int
__mspabi_cmpf (float x, float y)
{
  if (x < y)
    return -1;
  if (x > y)
    return 1;
  return 0;
}

int __mspabi_cmpd (double, double);

int
__mspabi_cmpd (double x, double y)
{
  if (x < y)
    return -1;
  if (x > y)
    return 1;
  return 0;
}