RTEMS  5.0.0-m2006-1
types.h
1 #ifndef __LINUX_TYPES_H__
2 #define __LINUX_TYPES_H__
3 
4 #include <sys/types.h>
5 #include <stdint.h>
6 
7 #define loff_t off_t
8 
9 typedef uint8_t u8;
10 typedef uint16_t u16;
11 typedef uint32_t u32;
12 
13 typedef uint8_t __u8;
14 typedef uint16_t __u16;
15 typedef uint32_t __u32;
16 
17 #define kvec iovec
18 
19 struct qstr {
20  const char *name;
21  size_t len;
22 };
23 
24 #endif /* __LINUX_TYPES_H__ */
25 
Definition: types.h:19