18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef __ASM_LIBGCC_H 38c2ecf20Sopenharmony_ci#define __ASM_LIBGCC_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#include <asm/byteorder.h> 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_citypedef int word_type __attribute__ ((mode (__word__))); 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_cistruct DWstruct { 108c2ecf20Sopenharmony_ci int high, low; 118c2ecf20Sopenharmony_ci}; 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_citypedef union 148c2ecf20Sopenharmony_ci{ 158c2ecf20Sopenharmony_ci struct DWstruct s; 168c2ecf20Sopenharmony_ci long long ll; 178c2ecf20Sopenharmony_ci} DWunion; 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci#endif /* __ASM_LIBGCC_H */ 20