From 765cb0028d4e78470aebba5b9dc67f22c8db87e8 Mon Sep 17 00:00:00 2001 From: Juergen Beisert Date: Thu, 10 Dec 2009 16:27:28 +0100 Subject: [PATCH] Fix some exported names Unsure if this is the/a correct fix, but without it, my build fails. Signed-off-by: Juergen Beisert Signed-off-by: Sascha Hauer --- lib/string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/string.c b/lib/string.c index 520eb74f1..cbb13d328 100644 --- a/lib/string.c +++ b/lib/string.c @@ -186,7 +186,7 @@ char * _strrchr(const char * s, int c) return NULL; } #endif -EXPORT_SYMBOL(strrchr); +EXPORT_SYMBOL(_strrchr); #ifndef __HAVE_ARCH_STRLEN /** @@ -539,7 +539,7 @@ char * _strstr(const char * s1,const char * s2) return NULL; } #endif -EXPORT_SYMBOL(strstr); +EXPORT_SYMBOL(_strstr); #ifndef __HAVE_ARCH_MEMCHR /**