Warning: This file is not a C or C++ file. It does not have highlighting.
| 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 __ASSEMBLER__ |
| 9 | |
| 10 | union register_pair { |
| 11 | unsigned __int128 pair; |
| 12 | struct { |
| 13 | unsigned long even; |
| 14 | unsigned long odd; |
| 15 | }; |
| 16 | }; |
| 17 | |
| 18 | #endif /* __ASSEMBLER__ */ |
| 19 | #endif /* _ASM_S390_TYPES_H */ |
| 20 |
Warning: This file is not a C or C++ file. It does not have highlighting.
