浏览代码

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>
Paul Mackerras 19 年之前
父节点
当前提交
056cb48a2f
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      arch/ppc/lib/strcase.c

+ 1 - 0
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)
 {