diff options
Diffstat (limited to 'win32/contrib/pthreads/pthread.h')
-rw-r--r-- | win32/contrib/pthreads/pthread.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/contrib/pthreads/pthread.h b/win32/contrib/pthreads/pthread.h index 31e2cf918..60973c44c 100644 --- a/win32/contrib/pthreads/pthread.h +++ b/win32/contrib/pthreads/pthread.h @@ -978,11 +978,6 @@ int * _errno( void ); * actually exist on WIN32.
*/
-#if !defined(__MINGW32__)
-#define strtok_r( _s, _sep, _lasts ) \
- ( *(_lasts) = strtok( (_s), (_sep) ) )
-#endif /* !__MINGW32__ */
-
#define asctime_r( _tm, _buf ) \
( strcpy( (_buf), asctime( (_tm) ) ), \
(_buf) )
|