Import 2.3.18pre1
[davej-history.git] / include / asm-sh / types.h
blobd23eeb74f6cb403b86890b0531e7434634a5aba6
1 #ifndef __ASM_SH_TYPES_H
2 #define __ASM_SH_TYPES_H
4 typedef unsigned short umode_t;
6 /*
7 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
8 * header files exported to user space
9 */
11 typedef __signed__ char __s8;
12 typedef unsigned char __u8;
14 typedef __signed__ short __s16;
15 typedef unsigned short __u16;
17 typedef __signed__ int __s32;
18 typedef unsigned int __u32;
20 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
21 typedef __signed__ long long __s64;
22 typedef unsigned long long __u64;
23 #endif
26 * These aren't exported outside the kernel to avoid name space clashes
28 #ifdef __KERNEL__
30 typedef signed char s8;
31 typedef unsigned char u8;
33 typedef signed short s16;
34 typedef unsigned short u16;
36 typedef signed int s32;
37 typedef unsigned int u32;
39 typedef signed long long s64;
40 typedef unsigned long long u64;
42 #define BITS_PER_LONG 32
44 #endif /* __KERNEL__ */
46 #endif /* __ASM_SH_TYPES_H */