linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / arch / powerpc / lib / strcase.c
index f8ec1eb..36b5210 100644 (file)
@@ -1,6 +1,4 @@
-#include <linux/types.h>
 #include <linux/ctype.h>
-#include <linux/string.h>
 
 int strcasecmp(const char *s1, const char *s2)
 {
@@ -13,7 +11,7 @@ int strcasecmp(const char *s1, const char *s2)
        return c1 - c2;
 }
 
-int strncasecmp(const char *s1, const char *s2, size_t n)
+int strncasecmp(const char *s1, const char *s2, int n)
 {
        int c1, c2;