diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-10-31 03:42:52 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-10-31 03:42:52 +0000 |
commit | 5b12314664a12ac72194c31c1eb431637565cf1d (patch) | |
tree | 7fd5fc5b80e05a721ab2f7aea51df12bd6d14735 /gdb/mdebugread.h | |
parent | b9c3a7debd882773c7228366fb528db51a4fcb35 (diff) | |
download | binutils-5b12314664a12ac72194c31c1eb431637565cf1d.zip binutils-5b12314664a12ac72194c31c1eb431637565cf1d.tar.gz binutils-5b12314664a12ac72194c31c1eb431637565cf1d.tar.bz2 |
2004-10-30 Andrew Cagney <cagney@gnu.org>
* objfiles.c: Include "mdebugread.h".
* mdebugread.c: Include "mdebugread.h".
(ecoff_relocate_cfi): Delete.
* config/alpha/tm-alpha.h (ecoff_relcate_cfi): Delete.
* config/mips/tm-mips.h (ecoff_relcate_cfi): Delete.
* mdebugread.h (ecoff_relocate_efi): New file.
* Makefile.in: Update dependencies.
Diffstat (limited to 'gdb/mdebugread.h')
-rw-r--r-- | gdb/mdebugread.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/mdebugread.h b/gdb/mdebugread.h new file mode 100644 index 0000000..e1a5d1a --- /dev/null +++ b/gdb/mdebugread.h @@ -0,0 +1,27 @@ +/* Read a symbol table in ECOFF format (Third-Eye). + + Copyright 2004 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 + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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. */ + +#ifndef MDEBUGREAD_H +#define MDEBUGREAD_H + +extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR); + +#endif /* MDEBUGREAD_H */ |