diff options
author | David Carlton <carlton@bactrian.org> | 2002-10-17 21:16:12 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2002-10-17 21:16:12 +0000 |
commit | 63ca651f75ebaa245c6277dbf6a7398b70b05806 (patch) | |
tree | a43c99baed2dedea621c6b3580cfb914a0315264 /gdb/symfile.h | |
parent | abe1a5d0efb706925b171e04e3b11398c01ad3e0 (diff) | |
download | gdb-63ca651f75ebaa245c6277dbf6a7398b70b05806.zip gdb-63ca651f75ebaa245c6277dbf6a7398b70b05806.tar.gz gdb-63ca651f75ebaa245c6277dbf6a7398b70b05806.tar.bz2 |
2002-10-09 David Carlton <carlton@math.stanford.edu>
* symfile.h: Add opaque declaration for struct obstack.
Declare obsavestring to take a const char *.
* symfile.c (obsavestring): Make first argument a const char *.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index 39eb308..62dfcef 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -25,6 +25,10 @@ /* This file requires that you first include "bfd.h". */ +/* Opaque declarations. */ + +struct obstack; + /* Partial symbols are stored in the psymbol_cache and pointers to them are kept in a dynamically grown array that is obtained from malloc and grown as necessary via realloc. Each objfile typically has two of these, @@ -208,7 +212,7 @@ extern void sort_symtab_syms (struct symtab *); (and add a null character at the end in the copy). Returns the address of the copy. */ -extern char *obsavestring (char *, int, struct obstack *); +extern char *obsavestring (const char *, int, struct obstack *); /* Concatenate strings S1, S2 and S3; return the new string. Space is found in the symbol_obstack. */ |