From: Paul Mackerras Date: Tue, 28 Mar 2006 10:13:44 +0000 (+1100) Subject: ppc: Fix compile error in arch/ppc/lib/strcase.c X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=056cb48a2fb6fb31debf665695a9f97b45cfb8ec;p=deliverable%2Flinux.git ppc: Fix compile error in arch/ppc/lib/strcase.c Now that the strncasecmp implementation takes a size_t third parameter, we need to get a definition of size_t from somewhere. Signed-off-by: Paul Mackerras --- diff --git a/arch/ppc/lib/strcase.c b/arch/ppc/lib/strcase.c index d98857890619..3b0094cc2b52 100644 --- a/arch/ppc/lib/strcase.c +++ b/arch/ppc/lib/strcase.c @@ -1,4 +1,5 @@ #include +#include int strcasecmp(const char *s1, const char *s2) {