summaryrefslogtreecommitdiffstats
path: root/arch/ppc/lib
diff options
context:
space:
mode:
authorPaul Mackerras2006-03-28 12:13:44 +0200
committerPaul Mackerras2006-03-28 13:10:02 +0200
commit056cb48a2fb6fb31debf665695a9f97b45cfb8ec (patch)
treef2c4216123dfbe0e30452fbc6b1b0b89de8824fa /arch/ppc/lib
parent[PATCH] git-powerpc: WARN was a dumb idea (diff)
downloadkernel-qcow2-linux-056cb48a2fb6fb31debf665695a9f97b45cfb8ec.tar.gz
kernel-qcow2-linux-056cb48a2fb6fb31debf665695a9f97b45cfb8ec.tar.xz
kernel-qcow2-linux-056cb48a2fb6fb31debf665695a9f97b45cfb8ec.zip
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>
Diffstat (limited to 'arch/ppc/lib')
-rw-r--r--arch/ppc/lib/strcase.c1
1 files changed, 1 insertions, 0 deletions
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 <linux/ctype.h>
+#include <linux/types.h>
int strcasecmp(const char *s1, const char *s2)
{