9
0
Fork 0

Fix some exported names

Unsure if this is the/a correct fix, but without it, my build fails.

Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Juergen Beisert 2009-12-10 16:27:28 +01:00 committed by Sascha Hauer
parent fb7a9c98eb
commit 765cb0028d
1 changed files with 2 additions and 2 deletions

View File

@ -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
/**