1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

gmon: Remove internal_function attribute

This commit is contained in:
Florian Weimer
2017-08-31 16:16:07 +02:00
parent 86e4919f57
commit 8d2f9410d5
4 changed files with 16 additions and 10 deletions

View File

@ -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. */