aboutsummaryrefslogtreecommitdiff
path: root/gprof/core.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1998-04-28 23:52:20 +0000
committerIan Lance Taylor <ian@airs.com>1998-04-28 23:52:20 +0000
commit43870aec5efd34c46f8d7d8422291030c5048fd8 (patch)
tree57b11d57a3ffa07425ef44bf0dcd7504792f1133 /gprof/core.h
parentbfde75f7e3846ec59ea36dcb07bb3f08924890a3 (diff)
downloadbinutils-43870aec5efd34c46f8d7d8422291030c5048fd8.zip
binutils-43870aec5efd34c46f8d7d8422291030c5048fd8.tar.gz
binutils-43870aec5efd34c46f8d7d8422291030c5048fd8.tar.bz2
* corefile.c: Rename from core.c.
* corefile.h: Rename from core.h. * Many .c files: Include corefile.h rather than core.h. * Makefile.am (sources): Change core.c to corefile.c. (noinst_HEADERS): Change core.h to corefile.h. ($(OBJECTS)): Depend upon corefile.h rather than core.h. (corefile.o): Rename target from core.o, depend upon corefile.c. * Makefile.in, po/POTFILES.in: Rebuild.
Diffstat (limited to 'gprof/core.h')
-rw-r--r--gprof/core.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/gprof/core.h b/gprof/core.h
deleted file mode 100644
index a78b58a..0000000
--- a/gprof/core.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef core_h
-#define core_h
-
-#include "bfd.h"
-
-extern bfd *core_bfd; /* bfd for core-file */
-extern int core_num_syms; /* # of entries in symbol-table */
-extern asymbol **core_syms; /* symbol table in a.out */
-extern asection *core_text_sect; /* core text section */
-extern PTR core_text_space; /* text space of a.out in core */
-
-extern int min_insn_size; /* size of smallest instruction, in bytes */
-extern int offset_to_code; /* offset (in bytes) of code from entry
- address of routine */
-
-extern void core_init PARAMS ((const char *a_out_name));
-extern void core_get_text_space PARAMS ((bfd * core_bfd));
-extern void core_create_function_syms PARAMS ((bfd * core_bfd));
-extern void core_create_line_syms PARAMS ((bfd * core_bfd));
-
-#endif /* core_h */