From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29127 invoked by alias); 12 Mar 2004 22:01:55 -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 29119 invoked from network); 12 Mar 2004 22:01:53 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.115.144) by sources.redhat.com with SMTP; 12 Mar 2004 22:01:53 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i2CM1kYp000269; Fri, 12 Mar 2004 23:01:46 +0100 (CET) (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.6p3/8.12.6) with ESMTP id i2CM1gFb000466; Fri, 12 Mar 2004 23:01:42 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i2CM1gAT000463; Fri, 12 Mar 2004 23:01:42 +0100 (CET) Date: Fri, 12 Mar 2004 22:01:00 -0000 Message-ID: <200403122201.i2CM1gAT000463@elgar.kettenis.dyndns.org> From: Mark Kettenis To: cagney@gnu.org CC: gdb-patches@sources.redhat.com In-reply-to: <4050FBA4.3020704@gnu.org> (message from Andrew Cagney on Thu, 11 Mar 2004 18:52:04 -0500) Subject: Re: [ob] Add #ifndef SOLIB_SVR4 References: <4050FBA4.3020704@gnu.org> X-SW-Source: 2004-03.o/txt/msg00289.txt Message-ID: <20040312220100.TBfcRUiyFZqrcRz3RwSYk9RsVZ9Rq5qgTnpbZXg15Bc@z> Date: Thu, 11 Mar 2004 18:52:04 -0500 From: Andrew Cagney 2004-03-11 Andrew Cagney * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper. Hmm, this is inconsistent with our current practive where this kind of wrappers always ends in _H. So I went ahead and added the attached obvious fix. Mark Index: ChangeLog from Mark Kettenis * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H wrapper. Index: solib-svr4.h =================================================================== RCS file: /cvs/src/src/gdb/solib-svr4.h,v retrieving revision 1.7 diff -u -p -r1.7 solib-svr4.h --- solib-svr4.h 11 Mar 2004 23:51:58 -0000 1.7 +++ solib-svr4.h 12 Mar 2004 19:09:28 -0000 @@ -20,8 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef SOLIB_SVR4 -#define SOLIB_SVR4 +#ifndef SOLIB_SVR4_H +#define SOLIB_SVR4_H struct objfile; @@ -92,4 +92,4 @@ extern struct link_map_offsets *(*legacy extern struct link_map_offsets *svr4_ilp32_fetch_link_map_offsets (void); extern struct link_map_offsets *svr4_lp64_fetch_link_map_offsets (void); -#endif +#endif /* solib-svr4.h */