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.
This commit is contained in:
Alan Modra
2022-05-10 08:53:17 +09:30
parent 2ec4ffc1c6
commit e3154ef69c
6 changed files with 22 additions and 22 deletions

View File

@@ -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 */