initial commit with v2.6.9
[linux-2.6.9-moxart.git] / arch / ppc64 / boot / ppc32-types.h
blobf7b8884f8f707539d91194e83f6c4fad0a20278a
1 #ifndef _PPC64_TYPES_H
2 #define _PPC64_TYPES_H
4 typedef __signed__ char __s8;
5 typedef unsigned char __u8;
7 typedef __signed__ short __s16;
8 typedef unsigned short __u16;
10 typedef __signed__ int __s32;
11 typedef unsigned int __u32;
13 typedef __signed__ long long __s64;
14 typedef unsigned long long __u64;
16 typedef signed char s8;
17 typedef unsigned char u8;
19 typedef signed short s16;
20 typedef unsigned short u16;
22 typedef signed int s32;
23 typedef unsigned int u32;
25 typedef signed long long s64;
26 typedef unsigned long long u64;
28 typedef struct {
29 __u32 u[4];
30 } __attribute((aligned(16))) __vector128;
32 #define BITS_PER_LONG 32
34 typedef __vector128 vector128;
36 #endif /* _PPC64_TYPES_H */