]> git.saurik.com Git - wxWidgets.git/commitdiff
don't #define wxStrtok() which takes 3 arguments as wcstok() which takes only 2,...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Sep 2002 00:47:56 +0000 (00:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Sep 2002 00:47:56 +0000 (00:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/wxchar.h

index a8ce78ad9f14caf923828185a1cc53ac4ae5634b..6aea1283b1a08b2865819e00d6f707bc33d3f8d8 100644 (file)
             #define  wxStrspn    wcsspn
             #define  wxStrstr    wcsstr
             #define  wxStrtod    wcstod
-            #define  wxStrtok    wcstok
             #define  wxStrtol    wcstol
             #define  wxStrtoul   wcstoul
             #define  wxStrxfrm   wcsxfrm
         #define  wxStrtod    strtod
         #ifdef HAVE_STRTOK_R
             #define  wxStrtok(str, sep, last)    strtok_r(str, sep, last)
-        #else
-            #define  wxStrtok(str, sep, last)    strtok(str, sep)
         #endif
         #define  wxStrtol    strtol
         #define  wxStrtoul   strtoul