X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fgdb_obstack.h;h=210bbdc26a3fdaffd8ab7e7cb64e349ed5d66b87;hb=f91609ee709c69acbeafdd7000a70a7b63579ee3;hp=253fd199b0d4e62a2d8f92e861801ee3d957f784;hpb=030f20e19e7c5d2d8d26030c83cc2387a9e04c1d;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/gdb_obstack.h b/gdb/gdb_obstack.h index 253fd199b0..210bbdc26a 100644 --- a/gdb/gdb_obstack.h +++ b/gdb/gdb_obstack.h @@ -1,12 +1,12 @@ /* Obstack wrapper for GDB. - Copyright 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2007, 2008 Free Software Foundation, Inc. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -15,9 +15,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + along with this program. If not, see . */ #if !defined (GDB_OBSTACK_H) #define GDB_OBSTACK_H 1 @@ -42,4 +40,9 @@ #define obstack_chunk_alloc xmalloc #define obstack_chunk_free xfree +#define obstack_grow_str(OBSTACK,STRING) \ + obstack_grow (OBSTACK, STRING, strlen (STRING)) +#define obstack_grow_str0(OBSTACK,STRING) \ + obstack_grow0 (OBSTACK, STRING, strlen (STRING)) + #endif