8d1a0a13ed
On 2008-12-30 11:32:33, Sam Ravnborg wrote: > We have added a few additional validation checks of the userspace headers: ... > 3) We should include <linux/types.h> and not <asm/types.h> > 4) If we use a __[us]{8,16,32,64} type then we must include <linux/types.h> Satisfy these requirements for the linux/qnx*.h headers. Signed-off-by: Anders Larsen <al@alarsen.net> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
29 lines
561 B
C
29 lines
561 B
C
/*
|
|
* Name : qnxtypes.h
|
|
* Author : Richard Frowijn
|
|
* Function : standard qnx types
|
|
* History : 22-03-1998 created
|
|
*
|
|
*/
|
|
|
|
#ifndef _QNX4TYPES_H
|
|
#define _QNX4TYPES_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
typedef __le16 qnx4_nxtnt_t;
|
|
typedef __u8 qnx4_ftype_t;
|
|
|
|
typedef struct {
|
|
__le32 xtnt_blk;
|
|
__le32 xtnt_size;
|
|
} qnx4_xtnt_t;
|
|
|
|
typedef __le16 qnx4_mode_t;
|
|
typedef __le16 qnx4_muid_t;
|
|
typedef __le16 qnx4_mgid_t;
|
|
typedef __le32 qnx4_off_t;
|
|
typedef __le16 qnx4_nlink_t;
|
|
|
|
#endif
|