summaryrefslogtreecommitdiff
path: root/Zend/zend.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-04-26 19:08:58 +0000
committerAntony Dovgal <tony2001@php.net>2007-04-26 19:08:58 +0000
commit3c6d2617e7f70ea804b9de943151caf53b951b88 (patch)
tree8b02fded74a8908d93d10f224b14cf587eb61556 /Zend/zend.h
parent3e7b4e5d1a5de612256b7324b5d8a22ca2cd34a3 (diff)
downloadphp-git-3c6d2617e7f70ea804b9de943151caf53b951b88.tar.gz
MFH: fix build on Tru64
Diffstat (limited to 'Zend/zend.h')
-rw-r--r--Zend/zend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 9e252ca0ec..cfcdc1623c 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -250,7 +250,7 @@ char *alloca ();
#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)
+#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__)
# define ZEND_VM_ALWAYS_INLINE __attribute__ ((always_inline))
void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((noreturn));
#else