xref: /linux/arch/powerpc/include/asm/types.h (revision 417552999d0b6681ac30e117ae890828ca7e46b3)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * This file is never included by application software unless
4  * explicitly requested (e.g., via linux/types.h) in which case the
5  * application is Linux specific so (user-) name space pollution is
6  * not a major issue.  However, for interoperability, libraries still
7  * need to be careful to avoid a name clashes.
8  */
9 #ifndef _ASM_POWERPC_TYPES_H
10 #define _ASM_POWERPC_TYPES_H
11 
12 #include <uapi/asm/types.h>
13 
14 #ifndef __ASSEMBLER__
15 
16 typedef __vector128 vector128;
17 
18 #endif /* __ASSEMBLER__ */
19 
20 #endif /* _ASM_POWERPC_TYPES_H */
21