/arch/sparc/lib/libgcc.h

https://bitbucket.org/ndreys/linux-sunxi · C++ Header · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · 7c5bcf20ad9c795a8e3b50b4c96b25eb MD5 · raw file

  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 */