types.h revision 6dd4b91b326b0c385d9c68c90a255d6db799757e
1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef __ASM_ARM_TYPES_H
13#define __ASM_ARM_TYPES_H
14
15#ifndef __ASSEMBLY__
16
17typedef unsigned short umode_t;
18
19typedef __signed__ char __s8;
20typedef unsigned char __u8;
21
22typedef __signed__ short __s16;
23typedef unsigned short __u16;
24
25typedef __signed__ int __s32;
26typedef unsigned int __u32;
27
28#ifdef __GNUC__
29typedef __signed__ long long __s64;
30typedef unsigned long long __u64;
31#endif
32
33#endif
34
35#endif
36
37