mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 01:00:07 +00:00
728c24ff87
* elf/dl-minimal.c: Add prototypes. * include/locale.h: Add internal prototypes. * include/sys/gmon.h: Likewise.
16 lines
315 B
C
16 lines
315 B
C
#ifndef _SYS_GMON_H
|
|
#include <gmon/sys/gmon.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
|
|
/* Write current profiling data to file. */
|
|
extern void __write_profiling (void);
|
|
extern void write_profiling (void);
|
|
|
|
struct __bb;
|
|
extern void __bb_init_func (struct __bb *bb);
|
|
extern void __bb_exit_func (void);
|
|
|
|
|
|
#endif
|