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

  1. #include "common.h"
  2. #ifdef IEEE_SINGBAS
  3. #include <inline/mathieeesingbas.h>
  4. #else
  5. #include <inline/mathffp.h>
  6. #include <inline/mathtrans.h>
  7. #endif
  8.  
  9. int
  10. __nesf2 (a, b)
  11.      FLOAT a, b;
  12. {
  13. #ifdef IEEE_SINGBAS
  14.   return !!IEEESPCmp (a, b);
  15. #else
  16.   return !!SPCmp( SPFieee(a), SPFieee(b));
  17. #endif
  18. }
  19.