From: David Elliott Date: Sun, 27 Mar 2005 08:48:30 +0000 (+0000) Subject: Declare strptime when using MSL headers on OS X. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/97ae9d4cc70478baa7a9f1d299da1bbf6601ccf5 Declare strptime when using MSL headers on OS X. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33087 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index dd6e3851c2..59d7a5e55b 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -20,6 +20,10 @@ #include "wx/defs.h" /* for wxUSE_UNICODE */ +#if defined(HAVE_STRTOK_R) && defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS + char *strtok_r(char *, const char *, char **); +#endif + /* check whether we have wchar_t and which size it is if we do */ #if !defined(wxUSE_WCHAR_T) #if defined(__UNIX__)