1/*
2 * This file is never included by application software unless
3 * explicitly requested (e.g., via linux/types.h) in which case the
4 * application is Linux specific so (user-) name space pollution is
5 * not a major issue.  However, for interoperability, libraries still
6 * need to be careful to avoid a name clashes.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13#ifndef _ASM_POWERPC_TYPES_H
14#define _ASM_POWERPC_TYPES_H
15
16#include <uapi/asm/types.h>
17
18#ifndef __ASSEMBLY__
19
20typedef __vector128 vector128;
21
22typedef struct {
23	unsigned long entry;
24	unsigned long toc;
25	unsigned long env;
26} func_descr_t;
27
28#endif /* __ASSEMBLY__ */
29
30#endif /* _ASM_POWERPC_TYPES_H */
31