From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: "incompatible implicit declaration" warnings with GCC 4.2.1 Date: Mon, 22 Oct 2007 23:55:29 +0200 Message-ID: References: <471D19E8.4020701@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1193090149 1312 80.91.229.12 (22 Oct 2007 21:55:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Oct 2007 21:55:49 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: "Jason Rumney" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 22 23:55:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ik5FT-0008B1-6N for ged-emacs-devel@m.gmane.org; Mon, 22 Oct 2007 23:55:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ik5FL-0000cO-CA for ged-emacs-devel@m.gmane.org; Mon, 22 Oct 2007 17:55:39 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ik5FG-0000c4-Rh for emacs-devel@gnu.org; Mon, 22 Oct 2007 17:55:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ik5FE-0000bi-A3 for emacs-devel@gnu.org; Mon, 22 Oct 2007 17:55:33 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ik5FE-0000bf-5D for emacs-devel@gnu.org; Mon, 22 Oct 2007 17:55:32 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.178]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ik5FD-0004zw-6i for emacs-devel@gnu.org; Mon, 22 Oct 2007 17:55:31 -0400 Original-Received: by wa-out-1112.google.com with SMTP id k34so1558472wah for ; Mon, 22 Oct 2007 14:55:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=9G/pDcOw7J/6LxXveq3kL+amyiJhf585zGsizi4kJ3U=; b=hzvpMZdMNLhrAP7ppLfgIOcv9YdDJCMFe45TDXtEzyHFEiMhoaVkiwN81TAtFzAiTnhOUNGoTbxhClHvXEqcVtSoTd6kanQX9Nf254FmwDujqj00nvK3jqwhp+CBKHvQvWtcVJFhFrUx01sZOvtVmQvHABhDeAeieMMOU74joJw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fy3hx7nzhaNIGFlsFhbnosI+A0N0xYoUW8EA6DEzZpMeorUOyJofw37/M5QnBVxKWl8ZFME1Mu+5P8upJUHOQ3pdJkZcyfooV0gjSUgAHIf1xpFSYvgdsL5wrJGjrCW3bk/VNa21MXgOYKYaPzuWzwpND9BpT8yFe6xfqPDtOe4= Original-Received: by 10.114.137.2 with SMTP id k2mr5822912wad.1193090129796; Mon, 22 Oct 2007 14:55:29 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Mon, 22 Oct 2007 14:55:29 -0700 (PDT) In-Reply-To: <471D19E8.4020701@gnu.org> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:81488 Archived-At: On 10/22/07, Jason Rumney wrote: > stdlib.h needs to be included before whichever header it is that contains > > #define abort w32_abort That's src/s/ms-w32.h, which is included from config.h. Including before config.h produces this new error: w32fns.c:9105: warning: conflicting types for 'w32_abort' w32fns.c:496: warning: previous implicit declaration of 'w32_abort' was here I'd really like to know why this include shuffling is suddenly needed with GCC 4.2.1... Juanma