allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-alpha / types.h
blobf5716139ec8987216d954858dfe6229ecd542488
1 #ifndef _ALPHA_TYPES_H
2 #define _ALPHA_TYPES_H
4 /*
5 * This file is never included by application software unless
6 * explicitly requested (e.g., via linux/types.h) in which case the
7 * application is Linux specific so (user-) name space pollution is
8 * not a major issue. However, for interoperability, libraries still
9 * need to be careful to avoid a name clashes.
12 #ifndef __ASSEMBLY__
14 typedef unsigned int umode_t;
17 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
18 * header files exported to user space
21 typedef __signed__ char __s8;
22 typedef unsigned char __u8;
24 typedef __signed__ short __s16;
25 typedef unsigned short __u16;
27 typedef __signed__ int __s32;
28 typedef unsigned int __u32;
30 typedef __signed__ long __s64;
31 typedef unsigned long __u64;
33 #endif /* __ASSEMBLY__ */
36 * These aren't exported outside the kernel to avoid name space clashes
38 #ifdef __KERNEL__
40 #define BITS_PER_LONG 64
42 #ifndef __ASSEMBLY__
44 typedef signed char s8;
45 typedef unsigned char u8;
47 typedef signed short s16;
48 typedef unsigned short u16;
50 typedef signed int s32;
51 typedef unsigned int u32;
53 typedef signed long s64;
54 typedef unsigned long u64;
56 typedef u64 dma_addr_t;
57 typedef u64 dma64_addr_t;
59 #endif /* __ASSEMBLY__ */
60 #endif /* __KERNEL__ */
61 #endif /* _ALPHA_TYPES_H */