projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
872345b
)
ppc: Fix compile error in arch/ppc/lib/strcase.c
author
Paul Mackerras
<paulus@samba.org>
Tue, 28 Mar 2006 10:13:44 +0000
(21:13 +1100)
committer
Paul 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
patch
|
blob
|
blame
|
history
diff --git
a/arch/ppc/lib/strcase.c
b/arch/ppc/lib/strcase.c
index d9885789061928068c027d2514cf8e76e8a3464a..3b0094cc2b520e7d24edce4381ef549c41413e98 100644
(file)
--- 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)
{