diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:20 +0930 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-07-09 01:35:16 -0700 |
commit | f241d2e5e336d440db106e972138664baeadfd70 (patch) | |
tree | db93c00cad051fb03305270804f39a9fd4ec7b9d /libc/sysdeps/linux/arm/aeabi_memset.c | |
parent | 2291c660e546e1fa766ef0c0696bd7b074c3b9f3 (diff) | |
download | uClibc-alpine-f241d2e5e336d440db106e972138664baeadfd70.tar.bz2 uClibc-alpine-f241d2e5e336d440db106e972138664baeadfd70.tar.xz |
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 <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/arm/aeabi_memset.c')
-rw-r--r-- | libc/sysdeps/linux/arm/aeabi_memset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arm/aeabi_memset.c b/libc/sysdeps/linux/arm/aeabi_memset.c index f1c366f27..a37e21fda 100644 --- a/libc/sysdeps/linux/arm/aeabi_memset.c +++ b/libc/sysdeps/linux/arm/aeabi_memset.c @@ -22,8 +22,8 @@ /* Set memory like memset, but different argument order and no return value required. */ -void -__aeabi_memset (void *dest, size_t n, int c) +void __aeabi_memset (void *dest, size_t n, int c); +void __aeabi_memset (void *dest, size_t n, int c) { memset (dest, c, n); } |