diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:16:07 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:16:07 +0200 |
commit | 8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (patch) | |
tree | 5fe4404c70f8a6c9eb709892e8c006aa6a3cafa1 /gmon | |
parent | 86e4919f574f0b33db8a7de187c1291710d94f0f (diff) | |
download | glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.tar.gz glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.tar.xz glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.zip |
gmon: Remove internal_function attribute
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/gmon.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gmon/gmon.c b/gmon/gmon.c index c1d170170a..4e48eba1bf 100644 --- a/gmon/gmon.c +++ b/gmon/gmon.c @@ -62,9 +62,9 @@ static int s_scale; void moncontrol (int mode); void __moncontrol (int mode); -static void write_hist (int fd) internal_function; -static void write_call_graph (int fd) internal_function; -static void write_bb_counts (int fd) internal_function; +static void write_hist (int fd); +static void write_call_graph (int fd); +static void write_bb_counts (int fd); /* * Control profiling @@ -171,7 +171,6 @@ weak_alias (__monstartup, monstartup) static void -internal_function write_hist (int fd) { u_char tag = GMON_TAG_TIME_HIST; @@ -222,7 +221,6 @@ write_hist (int fd) static void -internal_function write_call_graph (int fd) { #define NARCS_PER_WRITEV 32 @@ -284,7 +282,6 @@ write_call_graph (int fd) static void -internal_function write_bb_counts (int fd) { struct __bb *grp; |