From ec7ced515e4ada354a6b6a04bae83c3ed81afc3c Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Tue, 26 Apr 2011 21:52:49 +0200
Subject: [PATCH 358/396] cacheflush.c: use strong_alias_untyped

strong_alias fails due to char * != void *

Reported-by: Maksim Rayskiy <maksim.rayskiy@gmail.com>
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 libc/sysdeps/linux/mips/cacheflush.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libc/sysdeps/linux/mips/cacheflush.c b/libc/sysdeps/linux/mips/cacheflush.c
index 56472a0..15a3442 100644
--- a/libc/sysdeps/linux/mips/cacheflush.c
+++ b/libc/sysdeps/linux/mips/cacheflush.c
@@ -21,7 +21,7 @@
 #ifdef __NR_cacheflush
 # include <sys/cachectl.h>
 _syscall3(int, cacheflush, void *, addr, const int, nbytes, const int, op)
-strong_alias(cacheflush, _flush_cache)
+strong_alias_untyped(cacheflush, _flush_cache)
 #endif
 
 #ifdef __NR_cachectl
-- 
1.7.0.4

