From a73a37d820055abd9a762506795cc1c9662d732d Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 12 Mar 2007 11:49:59 +0000 Subject: [PATCH] Fix strcmp to match strcmp(3). Signed-off-by: Stefan Reinauer Acked-by: Uwe Hermann git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@254 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- include/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/string.h b/include/string.h index 291a80823c..105c709655 100644 --- a/include/string.h +++ b/include/string.h @@ -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;