libgcc.h 262 B

123456789101112131415161718
  1. #ifndef __ASM_LIBGCC_H
  2. #define __ASM_LIBGCC_H
  3. #include <asm/byteorder.h>
  4. typedef int word_type __attribute__ ((mode (__word__)));
  5. struct DWstruct {
  6. int high, low;
  7. };
  8. typedef union
  9. {
  10. struct DWstruct s;
  11. long long ll;
  12. } DWunion;
  13. #endif /* __ASM_LIBGCC_H */