mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
b8a95da22a
- Use inline in my strtok_r implementation
16 lines
210 B
C
16 lines
210 B
C
#ifndef TSRM_CONFIG_W32_H
|
|
#define TSRM_CONFIG_W32_H
|
|
|
|
#define HAVE_UTIME 1
|
|
#define HAVE_ALLOCA 1
|
|
|
|
#undef inline
|
|
#ifdef ZEND_WIN32_FORCE_INLINE
|
|
# define inline __forceinline
|
|
#else
|
|
# define inline
|
|
#endif
|
|
|
|
|
|
#endif
|