libgcc.h 301 B

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