From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5539 invoked by alias); 27 Sep 2002 22:09:07 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 5532 invoked from network); 27 Sep 2002 22:09:05 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (62.163.169.250) by sources.redhat.com with SMTP; 27 Sep 2002 22:09:05 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.5/8.12.5) with ESMTP id g8RM8vAh000625; Sat, 28 Sep 2002 00:08:57 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6/8.12.6) with ESMTP id g8RM8vEm078508; Sat, 28 Sep 2002 00:08:57 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6/8.12.6/Submit) id g8RM8vB3078505; Sat, 28 Sep 2002 00:08:57 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Date: Fri, 27 Sep 2002 15:09:00 -0000 Message-Id: <200209272208.g8RM8vB3078505@elgar.kettenis.dyndns.org> From: Mark Kettenis To: ac131313@redhat.com CC: gdb-patches@sources.redhat.com In-reply-to: <3D94D439.1080708@redhat.com> (message from Andrew Cagney on Fri, 27 Sep 2002 17:57:13 -0400) Subject: Re: [PATCH] Re-order includes in defs.h References: <200209272134.g8RLYdca026800@elgar.kettenis.dyndns.org> <3D94D439.1080708@redhat.com> X-SW-Source: 2002-09/txt/msg00686.txt.bz2 Date: Fri, 27 Sep 2002 17:57:13 -0400 From: Andrew Cagney > Index: ChangeLog > from Mark Kettenis > > * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h". > Fix some whitespace problems. Um, where is the gdb_locale.h part of the change? Ouch... ...here it is. I checked this in on top of the other patch. Index: defs.h =================================================================== RCS file: /cvs/src/src/gdb/defs.h,v retrieving revision 1.98 diff -u -p -r1.98 defs.h --- defs.h 27 Sep 2002 21:31:22 -0000 1.98 +++ defs.h 27 Sep 2002 22:04:39 -0000 @@ -40,6 +40,11 @@ #include #endif +/* First include ansidecl.h so we can use the various macro definitions + here and in all subsequent file inclusions. */ + +#include "ansidecl.h" + #include "gdb_locale.h" /* For ``enum target_signal''. */ @@ -53,11 +58,6 @@ #ifndef SEEK_CUR #define SEEK_CUR 1 #endif - -/* First include ansidecl.h so we can use the various macro definitions - here and in all subsequent file inclusions. */ - -#include "ansidecl.h" #include /* For va_list. */