bump to 1.0.37
[uclibc-ng.git] / libc / sysdeps / linux / sh / bits / kernel_types.h
blobac97261e69b2594ea48330fe565bb6dacb917cdc
1 /* Note that we use the exact same include guard #define names
2 * as asm/posix_types.h. This will avoid gratuitous conflicts
3 * with the posix_types.h kernel header, and will ensure that
4 * our private content, and not the kernel header, will win.
5 * -Erik
6 */
7 #if !defined __ASM_SH_POSIX_TYPES_H && !defined __ASM_SH_POSIX_TYPES_32_H
8 #define __ASM_SH_POSIX_TYPES_H
9 #define __ASM_SH_POSIX_TYPES_32_H
11 typedef unsigned short __kernel_dev_t;
12 typedef unsigned long __kernel_ino_t;
13 typedef unsigned short __kernel_mode_t;
14 typedef unsigned short __kernel_nlink_t;
15 typedef long __kernel_off_t;
16 typedef int __kernel_pid_t;
17 typedef unsigned short __kernel_ipc_pid_t;
18 typedef unsigned short __kernel_uid_t;
19 typedef unsigned short __kernel_gid_t;
20 typedef unsigned int __kernel_size_t;
21 typedef int __kernel_ssize_t;
22 typedef int __kernel_ptrdiff_t;
23 typedef long __kernel_time_t;
24 typedef long __kernel_suseconds_t;
25 typedef long __kernel_clock_t;
26 typedef int __kernel_daddr_t;
27 typedef char * __kernel_caddr_t;
28 typedef unsigned short __kernel_uid16_t;
29 typedef unsigned short __kernel_gid16_t;
30 typedef unsigned int __kernel_uid32_t;
31 typedef unsigned int __kernel_gid32_t;
32 typedef unsigned short __kernel_old_uid_t;
33 typedef unsigned short __kernel_old_gid_t;
34 typedef __kernel_dev_t __kernel_old_dev_t;
35 typedef long __kernel_long_t;
36 typedef unsigned long __kernel_ulong_t;
37 typedef long long __kernel_loff_t;
39 typedef struct {
40 #ifdef __USE_ALL
41 int val[2];
42 #else
43 int __val[2];
44 #endif
45 } __kernel_fsid_t;
47 #endif /* __ASM_SH_POSIX_TYPES_H */