Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * Name : qnxtypes.h
3 * Author : Richard Frowijn
4 * Function : standard qnx types
5 * History : 22-03-1998 created
6 *
7 */
8
9#ifndef _QNX4TYPES_H
10#define _QNX4TYPES_H
11
12#include <linux/types.h>
13
14typedef __le16 qnx4_nxtnt_t;
15typedef __u8 qnx4_ftype_t;
16
17typedef struct {
18 __le32 xtnt_blk;
19 __le32 xtnt_size;
20} qnx4_xtnt_t;
21
22typedef __le16 qnx4_mode_t;
23typedef __le16 qnx4_muid_t;
24typedef __le16 qnx4_mgid_t;
25typedef __le32 qnx4_off_t;
26typedef __le16 qnx4_nlink_t;
27
28#endif