summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/mips/bits/machine-gmon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/mips/bits/machine-gmon.h b/libc/sysdeps/linux/mips/bits/machine-gmon.h
index 244718ed0..6bece2be5 100644
--- a/libc/sysdeps/linux/mips/bits/machine-gmon.h
+++ b/libc/sysdeps/linux/mips/bits/machine-gmon.h
@@ -19,10 +19,10 @@
#if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ <= 1)
#define _MCOUNT_DECL(frompc,selfpc) \
-static void __attribute_used__ __mcount (u_long frompc, u_long selfpc)
+static void __mcount (u_long frompc, u_long selfpc)
#else
#define _MCOUNT_DECL(frompc,selfpc) \
-static void __mcount (u_long frompc, u_long selfpc)
+static void __attribute_used__ __mcount (u_long frompc, u_long selfpc)
#endif
/* Call __mcount with our the return PC for our caller,