From 00c8ece258acfa8867485172af9e74313d25bbdf Mon Sep 17 00:00:00 2001 From: Ron Date: Sat, 27 Jun 2009 04:44:20 +0930 Subject: Provide token prototypes for functions that are external but have no header This cuts down on a lot of noise from gcc-4.4 Signed-off-by: Ron Lee Signed-off-by: Mike Frysinger --- libc/sysdeps/linux/arm/aeabi_assert.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libc/sysdeps/linux/arm/aeabi_assert.c') diff --git a/libc/sysdeps/linux/arm/aeabi_assert.c b/libc/sysdeps/linux/arm/aeabi_assert.c index 53943ac13..348ca9b96 100644 --- a/libc/sysdeps/linux/arm/aeabi_assert.c +++ b/libc/sysdeps/linux/arm/aeabi_assert.c @@ -22,9 +22,8 @@ /* libc_hidden_proto(__assert) */ -void -__aeabi_assert (const char *assertion, const char *file, - unsigned int line) +void __aeabi_assert(const char *assertion, const char *file, unsigned int line); +void __aeabi_assert(const char *assertion, const char *file, unsigned int line) { __assert (assertion, file, line, NULL); } -- cgit v1.2.3