1#ifndef _SYS_GMON_H
2#include <gmon/sys/gmon.h>
3
4# ifndef _ISOMAC
5
6/* Now define the internal interfaces. */
7
8/* Write current profiling data to file. */
9extern void __write_profiling (void);
10extern void write_profiling (void);
11
12struct __bb;
13extern void __bb_init_func (struct __bb *bb);
14extern void __bb_exit_func (void);
15
16extern struct gmonparam _gmonparam attribute_hidden;
17
18# endif /* !_ISOMAC */
19#endif
20