1 /* $Id: types.h,v 1.13 2001/12/21 01:22:59 davem Exp $ */
6 * _xx is ok: it doesn't pollute the POSIX namespace. Use these in the
7 * header files exported to user space.
11 * This file is never included by application software unless
12 * explicitly requested (e.g., via linux/types.h) in which case the
13 * application is Linux specific so (user-) name space pollution is
14 * not a major issue. However, for interoperability, libraries still
15 * need to be careful to avoid a name clashes.
20 typedef unsigned short umode_t
;
22 typedef __signed__
char __s8
;
23 typedef unsigned char __u8
;
25 typedef __signed__
short __s16
;
26 typedef unsigned short __u16
;
28 typedef __signed__
int __s32
;
29 typedef unsigned int __u32
;
31 typedef __signed__
long long __s64
;
32 typedef unsigned long long __u64
;
34 #endif /* __ASSEMBLY__ */
38 #define BITS_PER_LONG 32
42 typedef __signed__
char s8
;
43 typedef unsigned char u8
;
45 typedef __signed__
short s16
;
46 typedef unsigned short u16
;
48 typedef __signed__
int s32
;
49 typedef unsigned int u32
;
51 typedef __signed__
long long s64
;
52 typedef unsigned long long u64
;
54 typedef u32 dma_addr_t
;
55 typedef u32 dma64_addr_t
;
57 #endif /* __ASSEMBLY__ */
59 #endif /* __KERNEL__ */
61 #endif /* defined(_SPARC_TYPES_H) */