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:
@ -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. */
|
||||
|
Reference in New Issue
Block a user