corrected wchar handling for Mac OS X

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10506 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-06-10 18:17:59 +00:00
parent f21b2fd89d
commit 79af3d3898

View File

@@ -288,11 +288,11 @@ typedef _TUCHAR wxUChar;
# ifdef HAVE_WCSTR_H # ifdef HAVE_WCSTR_H
# include <wcstr.h> # include <wcstr.h>
# else # else
# ifndef __FreeBSD__ # if defined(__FreeBSD__) || (defined(__APPLE__) && defined(__UNIX__))
# include <wchar.h>
# else
# include <stdlib.h> # include <stdlib.h>
# define wxNEED_WCSLEN # define wxNEED_WCSLEN
# else
# include <wchar.h>
# endif # endif
# endif # endif
# endif # endif