Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 
0003 #ifndef _ASM_S390_TYPES_H
0004 #define _ASM_S390_TYPES_H
0005 
0006 #include <uapi/asm/types.h>
0007 
0008 #ifndef __ASSEMBLY__
0009 
0010 union register_pair {
0011     unsigned __int128 pair;
0012     struct {
0013         unsigned long even;
0014         unsigned long odd;
0015     };
0016 };
0017 
0018 #endif /* __ASSEMBLY__ */
0019 #endif /* _ASM_S390_TYPES_H */