home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / gnulib / normal / fixunsdfsi.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-12  |  194 b   |  13 lines

  1. #include "common.h"
  2.  
  3. #include "limits.h"
  4.  
  5. unsigned SItype
  6. __fixunsdfsi (a)
  7.      double a;
  8. {
  9.   if (a >= - (double) LONG_MIN)
  10.     return (SItype) (a + LONG_MIN) - LONG_MIN;
  11.   return (SItype) a;
  12. }
  13.