summaryrefslogtreecommitdiff
path: root/gmon/gmon.c
diff options
context:
space:
mode:
Diffstat (limited to 'gmon/gmon.c')
-rw-r--r--gmon/gmon.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gmon/gmon.c b/gmon/gmon.c
index 10ae215c80..787da5a7e7 100644
--- a/gmon/gmon.c
+++ b/gmon/gmon.c
@@ -64,9 +64,9 @@ static int s_scale;
void moncontrol __P ((int mode));
void __moncontrol __P ((int mode));
-static void write_hist __P ((int fd));
-static void write_call_graph __P ((int fd));
-static void write_bb_counts __P ((int fd));
+static void write_hist __P ((int fd)) internal_function;
+static void write_call_graph __P ((int fd)) internal_function;
+static void write_bb_counts __P ((int fd)) internal_function;
/*
* Control profiling
@@ -169,6 +169,7 @@ weak_alias(__monstartup, monstartup)
static void
+internal_function
write_hist (fd)
int fd;
{
@@ -198,6 +199,7 @@ write_hist (fd)
static void
+internal_function
write_call_graph (fd)
int fd;
{
@@ -251,6 +253,7 @@ write_call_graph (fd)
static void
+internal_function
write_bb_counts (fd)
int fd;
{