types.h (318B)
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3#ifndef _ASM_S390_TYPES_H 4#define _ASM_S390_TYPES_H 5 6#include <uapi/asm/types.h> 7 8#ifndef __ASSEMBLY__ 9 10union register_pair { 11 unsigned __int128 pair; 12 struct { 13 unsigned long even; 14 unsigned long odd; 15 }; 16}; 17 18#endif /* __ASSEMBLY__ */ 19#endif /* _ASM_S390_TYPES_H */