RTEMS 5.2
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
9typedef uint8_t u8;
10typedef uint16_t u16;
11typedef uint32_t u32;
12
13typedef uint8_t __u8;
14typedef uint16_t __u16;
15typedef uint32_t __u32;
16
17#define kvec iovec
18
19struct qstr {
20 const char *name;
21 size_t len;
22};
23
24#endif /* __LINUX_TYPES_H__ */
25
Definition: types.h:19