Browse Source

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

Denis Vlasenko 16 years ago
parent
commit
f92843b334
1 changed files with 1 additions and 0 deletions
  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)