logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

qnxtypes.h (624B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Name : qnxtypes.h
  4. * Author : Richard Frowijn
  5. * Function : standard qnx types
  6. * History : 22-03-1998 created
  7. *
  8. */
  9. #ifndef _QNX4TYPES_H
  10. #define _QNX4TYPES_H
  11. #include <linux/types.h>
  12. typedef __le16 qnx4_nxtnt_t;
  13. typedef __u8 qnx4_ftype_t;
  14. typedef struct {
  15. __le32 xtnt_blk;
  16. __le32 xtnt_size;
  17. } qnx4_xtnt_t;
  18. typedef __le16 qnx4_mode_t;
  19. typedef __le16 qnx4_muid_t;
  20. typedef __le16 qnx4_mgid_t;
  21. typedef __le32 qnx4_off_t;
  22. typedef __le16 qnx4_nlink_t;
  23. #endif