diff options
author | Andi Gutmans <andi@php.net> | 1999-10-19 13:33:17 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-10-19 13:33:17 +0000 |
commit | 7a205f6087892996b2a2e3deabcf8a714e4b9d96 (patch) | |
tree | 251d8390481c10c8bd97dd8e1a6ee02a18c2b5f8 /Zend/zend_operators.h | |
parent | 578c6035c8d54a8223b8ff2364f34902b144dc47 (diff) | |
download | php-git-7a205f6087892996b2a2e3deabcf8a714e4b9d96.tar.gz |
- Preliminary submit of Thie's patch. Will fix the rest on Windows
as this was added on UNIX with patch. Changed IS_SAME -> IS_IDENTICAL
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 2458b14fed..727d1c9d21 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -42,6 +42,7 @@ ZEND_API int shift_right_function(zval *result, zval *op1, zval *op2); ZEND_API int concat_function(zval *result, zval *op1, zval *op2); ZEND_API int is_equal_function(zval *result, zval *op1, zval *op2); +ZEND_API int is_identical_function(zval *result, zval *op1, zval *op2); ZEND_API int is_not_equal_function(zval *result, zval *op1, zval *op2); ZEND_API int is_smaller_function(zval *result, zval *op1, zval *op2); ZEND_API int is_smaller_or_equal_function(zval *result, zval *op1, zval *op2); |