mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
15 lines
360 B
C
15 lines
360 B
C
#ifndef cg_print_h
|
|
#define cg_print_h
|
|
|
|
#include "gprof.h"
|
|
#include "symtab.h"
|
|
|
|
extern double print_time; /* total of time being printed */
|
|
|
|
extern void cg_print PARAMS ((Sym ** cg));
|
|
extern void cg_print_index PARAMS ((void));
|
|
extern void cg_print_file_ordering PARAMS ((void));
|
|
extern void cg_print_function_ordering PARAMS ((void));
|
|
|
|
#endif /* cg_print_h */
|