Fix strcmp to match strcmp(3).

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@254 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-03-12 11:49:59 +00:00
parent e895a471e0
commit a73a37d820

View file

@ -85,7 +85,7 @@ static inline size_t strlen(const char *str)
* zero, if s1 equals s2. Returns a value greater than zero, if
* s1 is longer than s2.
*/
static inline int strcmp(const unsigned char *s1, const unsigned char *s2)
static inline int strcmp(const char *s1, const char *s2)
{
unsigned char c1, c2;