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
# include <wcstr.h>
# else
# ifndef __FreeBSD__
# include <wchar.h>
# else
# if defined(__FreeBSD__) || (defined(__APPLE__) && defined(__UNIX__))
# include <stdlib.h>
# define wxNEED_WCSLEN
# else
# include <wchar.h>
# endif
# endif
# endif