From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23246 invoked by alias); 14 May 2011 02:33:23 -0000 Received: (qmail 23236 invoked by uid 22791); 14 May 2011 02:33:22 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 14 May 2011 02:33:09 +0000 From: "psmith at gnu dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/48996] New: fixincl on Red Hat EL 5 breaks sys/stat.h fstat64() X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: psmith at gnu dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Sat, 14 May 2011 06:47:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-05/txt/msg01141.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48996 Summary: fixincl on Red Hat EL 5 breaks sys/stat.h fstat64() Product: gcc Version: 4.5.3 Status: UNCONFIRMED Severity: major Priority: P3 Component: c AssignedTo: unassigned@gcc.gnu.org ReportedBy: psmith@gnu.org Hi all. When I run fixincl from GCC 4.5.3 on my Red Hat EL 5 system, the resulting sys/stat.h will throw an error whenever I try to call fstat64() from my code. If I delete sys/stat.h from the include-fixed directory, so the original is used, then all is happy again. Before fixincl the code reads: extern int fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)); After fixincl it reads: #ifdef __GNUC_GNU_INLINE__ extern #endif __inline__ int fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)); and the compiler error I get is: include-fixed/sys/stat.h:255:16: error: inline function 'int fstat64(int, stat64*)' used but never defined where line 255 is the __inline__ line above. Checking with the preprocessor I see that __GNUC_GNU_INLINE__ is built-in defined to be 1.