home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / msdos / djgpp / emu387 / compare.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-25  |  227 b   |  15 lines

  1. #ifndef _COMPARE_H_
  2. #define _COMPARE_H_
  3.  
  4. int compare(reg& a, reg& b);
  5.  
  6. #define COMP_A_GT_B    1
  7. #define COMP_A_EQ_B    2
  8. #define COMP_A_LT_B    3
  9. #define COMP_NOCOMP    4
  10. #define COMP_NAN    0x40
  11. #define COMP_SNAN    0x80
  12.  
  13. #endif
  14.  
  15.