1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 08:33:06 +02:00

enable on MSVC too

This commit is contained in:
Stanislav Malyshev
2008-06-27 18:44:39 +00:00
parent ff6cf25fa7
commit 148463ccd3

View File

@@ -178,6 +178,8 @@ char *alloca ();
#if ZEND_GCC_VERSION >= 3001
# define ZEND_ATTRIBUTE_DEPRECATED __attribute__((deprecated))
#elif defined(ZEND_WIN32) && defined(_MSC_VER) && _MSC_VER >= 1300
# define ZEND_ATTRIBUTE_DEPRECATED __declspec(deprecated)
#else
# define ZEND_ATTRIBUTE_DEPRECATED
#endif