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 /sysdeps | |
parent | 86e4919f574f0b33db8a7de187c1291710d94f0f (diff) | |
download | glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.zip glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.tar.gz glibc-8d2f9410d5f93e0ca15c9efe48a97d04726152c2.tar.bz2 |
gmon: Remove internal_function attribute
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/arm/machine-gmon.h | 4 | ||||
-rw-r--r-- | sysdeps/sparc/machine-gmon.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/arm/machine-gmon.h b/sysdeps/arm/machine-gmon.h index 8e9f43a..e5483f0 100644 --- a/sysdeps/arm/machine-gmon.h +++ b/sysdeps/arm/machine-gmon.h @@ -24,9 +24,9 @@ /* We must not pollute the global namespace. */ #define mcount_internal __mcount_internal -extern void mcount_internal (u_long frompc, u_long selfpc) internal_function; +extern void mcount_internal (u_long frompc, u_long selfpc); #define _MCOUNT_DECL(frompc, selfpc) \ - void internal_function mcount_internal (u_long frompc, u_long selfpc) + void mcount_internal (u_long frompc, u_long selfpc) /* Define MCOUNT as empty since we have the implementation in another file. */ diff --git a/sysdeps/sparc/machine-gmon.h b/sysdeps/sparc/machine-gmon.h index 361d98b..54de05d 100644 --- a/sysdeps/sparc/machine-gmon.h +++ b/sysdeps/sparc/machine-gmon.h @@ -22,10 +22,10 @@ /* We must not pollute the global namespace. */ #define mcount_internal __mcount_internal -extern void mcount_internal (u_long frompc, u_long selfpc) internal_function; +extern void mcount_internal (u_long frompc, u_long selfpc); #define _MCOUNT_DECL(frompc, selfpc) \ -void internal_function mcount_internal (u_long frompc, u_long selfpc) +void mcount_internal (u_long frompc, u_long selfpc) /* Define MCOUNT as empty since we have the implementation in another file. */ |