aboutsummaryrefslogtreecommitdiff
path: root/gprof/source.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2022-05-10 08:53:17 +0930
committerAlan Modra <amodra@gmail.com>2022-05-10 11:21:37 +0930
commite3154ef69c94705fd8d97f32a754a1080531b804 (patch)
treeac9983de6f7556cf89c94f1b5843e496ee6aaa36 /gprof/source.h
parent2ec4ffc1c6ce5659549a03ba5728df6811922bf9 (diff)
downloadgdb-e3154ef69c94705fd8d97f32a754a1080531b804.zip
gdb-e3154ef69c94705fd8d97f32a754a1080531b804.tar.gz
gdb-e3154ef69c94705fd8d97f32a754a1080531b804.tar.bz2
gprof: remove use of PTR
* basic_blocks.c: Replace uses of PTR with void * throughout. * cg_arcs.c: Likewise. * cg_print.c: Likewise. * hist.c: Likewise. * source.h: Likewise. * symtab.c: Likewise.
Diffstat (limited to 'gprof/source.h')
-rw-r--r--gprof/source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gprof/source.h b/gprof/source.h
index 2606581..5eece6b 100644
--- a/gprof/source.h
+++ b/gprof/source.h
@@ -58,6 +58,6 @@ extern Source_File *source_file_lookup_name (const char *);
is not stdout, it should be closed when done with it. */
extern FILE *annotate_source
(Source_File *sf, unsigned int max_width,
- void (*annote) (char *, unsigned int, int, PTR arg),
- PTR arg);
+ void (*annote) (char *, unsigned int, int, void *),
+ void *arg);
#endif /* source_h */