mirror of
https://github.com/php/php-src.git
synced 2024-12-11 19:04:38 +08:00
e32757ef4c
you like it :)
20 lines
271 B
C
20 lines
271 B
C
#ifndef TSRM_CONFIG_W32_H
|
|
#define TSRM_CONFIG_W32_H
|
|
|
|
#define HAVE_UTIME 1
|
|
#define HAVE_ALLOCA 1
|
|
|
|
#include <malloc.h>
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#undef inline
|
|
#ifdef ZEND_WIN32_FORCE_INLINE
|
|
# define inline __forceinline
|
|
#else
|
|
# define inline
|
|
#endif
|
|
|
|
|
|
#endif
|