ppc: Fix compile error in arch/ppc/lib/strcase.c
authorPaul Mackerras <paulus@samba.org>
Tue, 28 Mar 2006 10:13:44 +0000 (21:13 +1100)
committerPaul Mackerras <paulus@samba.org>
Tue, 28 Mar 2006 11:10:02 +0000 (22:10 +1100)
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

index d988578..3b0094c 100644 (file)
@@ -1,4 +1,5 @@
 #include <linux/ctype.h>
+#include <linux/types.h>
 
 int strcasecmp(const char *s1, const char *s2)
 {