Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __ASM_LIBGCC_H
0003 #define __ASM_LIBGCC_H
0004 
0005 #include <asm/byteorder.h>
0006 
0007 typedef int word_type __attribute__ ((mode (__word__)));
0008 
0009 struct DWstruct {
0010     int high, low;
0011 };
0012 
0013 typedef union
0014 {
0015     struct DWstruct s;
0016     long long ll;
0017 } DWunion;
0018 
0019 #endif /* __ASM_LIBGCC_H */