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 | c9ec4ec6975fecc15c6caac6ebaa40ec65b8da35 (patch) | |
tree | be685cf6fa1f1c30b25fe12d3858f7f7cb1daa09 /gdb/mdebugread.h | |
parent | 78fa2a157787bb3da2581e9bd82388737fe85267 (diff) | |
download | gdb-c9ec4ec6975fecc15c6caac6ebaa40ec65b8da35.tar.gz |
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 00000000000..e1a5d1a23cd --- /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 */ |