瀏覽代碼

fix compile breakage in libc/string/wcscasecmp.c
by adding include <wchar.h> in strcasecmp.c

Denis Vlasenko 17 年之前
父節點
當前提交
f92843b334
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      libc/string/strcasecmp.c

+ 1 - 0
libc/string/strcasecmp.c

@@ -11,6 +11,7 @@
 #include <locale.h>
 
 #ifdef WANT_WIDE
+# include <wchar.h>
 # define strcasecmp wcscasecmp
 # define strcasecmp_l wcscasecmp_l
 libc_hidden_proto(wcscasecmp)