Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-12-20 12:55:28 +0300
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-12-20 14:12:38 +0300
commitdc6e94551f09d3a983afd571478d63a09d6f66fa (patch)
tree3f264bc7ec30d2119d3d8f3df88460ccc8dcb244 /newlib
parent44756a36abd7157937d2ef9e862300fb3282d655 (diff)
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>
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/sys/rtems/include/machine/_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/sys/rtems/include/machine/_types.h b/newlib/libc/sys/rtems/include/machine/_types.h
index c61d6575d..8e2d9a3ef 100644
--- a/newlib/libc/sys/rtems/include/machine/_types.h
+++ b/newlib/libc/sys/rtems/include/machine/_types.h
@@ -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;