mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Need the gcc version check here too
This commit is contained in:
parent
2e08b57ee6
commit
a7cc9e7274
@ -292,7 +292,7 @@ static const char long_min_digits[] = "9223372036854775808";
|
||||
#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value_used TSRMLS_DC
|
||||
#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value_used TSRMLS_CC
|
||||
|
||||
#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__)
|
||||
#if defined(__GNUC__) && __GNUC__ >= 3 && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__)
|
||||
void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((noreturn));
|
||||
#else
|
||||
# define zend_error_noreturn zend_error
|
||||
|
Loading…
Reference in New Issue
Block a user