Net2/usr/src/usr.bin/gcc/gnulib/longlong/fixdfdi.c

Compare this file to the similar file:
Show the results in this format:

#include "longlong.h"

long long
__fixdfdi (a)
     double a;
{
  long long __fixunsdfdi (double a);

  if (a < 0)
    return - __fixunsdfdi (-a);
  return __fixunsdfdi (a);
}