From: Andrew Cagney Date: Thu, 11 Mar 2004 23:51:58 +0000 (+0000) Subject: 2004-03-11 Andrew Cagney X-Git-Tag: gprof-pre-ansify-2004-05-26~902 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db1ea9ba51156639253438542c2b718725186c0e;p=thirdparty%2Fbinutils-gdb.git 2004-03-11 Andrew Cagney * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index be7fc1476f6..2ea9b61edaf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2004-03-11 Andrew Cagney + + * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper. + 2004-03-11 Kevin Buettner * solist.h (master_so_list): New function. diff --git a/gdb/solib-svr4.h b/gdb/solib-svr4.h index d76c7f51459..5dc13c60e4b 100644 --- a/gdb/solib-svr4.h +++ b/gdb/solib-svr4.h @@ -20,6 +20,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef SOLIB_SVR4 +#define SOLIB_SVR4 + struct objfile; /* Critical offsets and sizes which describe struct r_debug and @@ -88,3 +91,5 @@ extern struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook)(void) for ILP32 and LP64 SVR4 systems. */ 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