diff options
author | Antony Dovgal <tony2001@php.net> | 2007-04-26 19:08:58 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-04-26 19:08:58 +0000 |
commit | 3c6d2617e7f70ea804b9de943151caf53b951b88 (patch) | |
tree | 8b02fded74a8908d93d10f224b14cf587eb61556 /Zend/zend.c | |
parent | 3e7b4e5d1a5de612256b7324b5d8a22ca2cd34a3 (diff) | |
download | php-git-3c6d2617e7f70ea804b9de943151caf53b951b88.tar.gz |
MFH: fix build on Tru64
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 88601eab4e..7b63d9bf6b 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -1078,7 +1078,7 @@ ZEND_API void zend_error(int type, const char *format, ...) } } -#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__) void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((alias("zend_error"),noreturn)); #endif |