diff options
author | Paul Mackerras <paulus@samba.org> | 2006-03-28 05:13:44 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-28 06:10:02 -0500 |
commit | 056cb48a2fb6fb31debf665695a9f97b45cfb8ec (patch) | |
tree | f2c4216123dfbe0e30452fbc6b1b0b89de8824fa /arch/ppc/lib/strcase.c | |
parent | 872345b715ee02f3b45528449f0d11b44ef9ebb8 (diff) |
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/strcase.c')
-rw-r--r-- | arch/ppc/lib/strcase.c | 1 |
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 @@ | |||
1 | #include <linux/ctype.h> | 1 | #include <linux/ctype.h> |
2 | #include <linux/types.h> | ||
2 | 3 | ||
3 | int strcasecmp(const char *s1, const char *s2) | 4 | int strcasecmp(const char *s1, const char *s2) |
4 | { | 5 | { |