math.h 404 B

12345678910111213141516
  1. #define BITS_PER_UNIT 8
  2. typedef int HItype __attribute__ ((mode (HI)));
  3. typedef unsigned int UHItype __attribute__ ((mode (HI)));
  4. typedef int SItype __attribute__ ((mode (SI)));
  5. typedef unsigned int USItype __attribute__ ((mode (SI)));
  6. typedef int word_type __attribute__ ((mode (__word__)));
  7. struct SIstruct {HItype low, high;};
  8. typedef union {
  9. struct SIstruct s;
  10. SItype ll;
  11. } SIunion;