diff options
Diffstat (limited to 'arch/ppc/lib/strcase.c')
-rw-r--r-- | arch/ppc/lib/strcase.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ppc/lib/strcase.c b/arch/ppc/lib/strcase.c index 36b521091bb..3b0094cc2b5 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) { @@ -11,7 +12,7 @@ int strcasecmp(const char *s1, const char *s2) return c1 - c2; } -int strncasecmp(const char *s1, const char *s2, int n) +int strncasecmp(const char *s1, const char *s2, size_t n) { int c1, c2; |