From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130643 invoked by alias); 21 Dec 2018 06:01:00 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 98002 invoked by uid 10080); 21 Dec 2018 06:00:45 -0000 Date: Fri, 21 Dec 2018 06:01:00 -0000 Message-ID: <20181221060045.97989.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] RTEMS: Use __uint64_t for __ino_t X-Act-Checkin: newlib-cygwin X-Git-Author: Sebastian Huber X-Git-Refname: refs/heads/master X-Git-Oldrev: 44756a36abd7157937d2ef9e862300fb3282d655 X-Git-Newrev: dc6e94551f09d3a983afd571478d63a09d6f66fa X-SW-Source: 2018-q4/txt/msg00043.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=dc6e94551f09d3a983afd571478d63a09d6f66fa commit dc6e94551f09d3a983afd571478d63a09d6f66fa Author: Sebastian Huber Date: Thu Dec 20 10:55:28 2018 +0100 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 Diff: --- newlib/libc/sys/rtems/include/machine/_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/sys/rtems/include/machine/_types.h b/newlib/libc/sys/rtems/include/machine/_types.h index c61d657..8e2d9a3 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;