RTEMS 7.0-rc1
Loading...
Searching...
No Matches
types.h
1#ifndef __LINUX_TYPES_H__
2#define __LINUX_TYPES_H__
3
4#ifdef CONFIG_JFFS2_SUMMARY
5#include <sys/socket.h>
6#define __must_hold(a)
7#endif
8#include <sys/types.h>
9#include <stdint.h>
10
11#define loff_t off_t
12
13typedef uint8_t u8;
14typedef uint16_t u16;
15typedef uint32_t u32;
16
17typedef uint8_t __u8;
18typedef uint16_t __u16;
19typedef uint32_t __u32;
20
21#define kvec iovec
22
23struct qstr {
24 const char *name;
25 size_t len;
26};
27
28#endif /* __LINUX_TYPES_H__ */
29
Definition: types.h:23