RTEMS: Use __uint64_t for __ino_t

FreeBSD uses a 64-bit ino_t since 2017-05-23.  We need this for the
pipe() support in libbsd.

Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
This commit is contained in:
Sebastian Huber 2018-12-20 10:55:28 +01:00
parent 44756a36ab
commit dc6e94551f
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ typedef __int64_t _off_t;
typedef _off_t _fpos_t;
#define __machine_fpos_t_defined
typedef unsigned long __ino_t;
typedef __uint64_t __ino_t;
#define __machine_ino_t_defined
typedef __uint32_t __mode_t;