From 056cb48a2fb6fb31debf665695a9f97b45cfb8ec Mon Sep 17 00:00:00 2001
From: Paul Mackerras <paulus@samba.org>
Date: Tue, 28 Mar 2006 21:13:44 +1100
Subject: [PATCH] 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 <paulus@samba.org>
---
 arch/ppc/lib/strcase.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/ppc/lib/strcase.c b/arch/ppc/lib/strcase.c
index d988578906192..3b0094cc2b520 100644
--- a/arch/ppc/lib/strcase.c
+++ b/arch/ppc/lib/strcase.c
@@ -1,4 +1,5 @@
 #include <linux/ctype.h>
+#include <linux/types.h>
 
 int strcasecmp(const char *s1, const char *s2)
 {
-- 
GitLab