diff options
| author | Zeev Suraski <zeev@php.net> | 2000-03-06 05:26:39 +0000 | 
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-03-06 05:26:39 +0000 | 
| commit | 5e55e47f7f32c40c446f2543cbc0002b52db47dd (patch) | |
| tree | 28fb47b0a0e847db59e16475f1e425d9c8bf3c1c /Zend/zend_ptr_stack.h | |
| parent | 331d0fd83ca9c8dc57960da2ffde55d6194332bf (diff) | |
| download | php-git-5e55e47f7f32c40c446f2543cbc0002b52db47dd.tar.gz | |
It's official now...
Diffstat (limited to 'Zend/zend_ptr_stack.h')
| -rw-r--r-- | Zend/zend_ptr_stack.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Zend/zend_ptr_stack.h b/Zend/zend_ptr_stack.h index fd1b124fae..ef607c55a0 100644 --- a/Zend/zend_ptr_stack.h +++ b/Zend/zend_ptr_stack.h @@ -2,12 +2,12 @@     +----------------------------------------------------------------------+     | Zend Engine                                                          |     +----------------------------------------------------------------------+ -   | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski                   | +   | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) |     +----------------------------------------------------------------------+ -   | This source file is subject to version 0.91 of the Zend license,     | +   | This source file is subject to version 0.92 of the Zend license,     |     | that is bundled with this package in the file LICENSE, and is        |      | available at through the world-wide-web at                           | -   | http://www.zend.com/license/0_91.txt.                                | +   | http://www.zend.com/license/0_92.txt.                                |     | If you did not receive a copy of the Zend license and are unable to  |     | obtain it through the world-wide-web, please send a note to          |     | license@zend.com so we can mail you a copy immediately.              | @@ -22,7 +22,7 @@  #define _ZEND_PTR_STACK_H  typedef struct _zend_ptr_stack { -	short top, max; +	int top, max;  	void **elements;  	void **top_element;  } zend_ptr_stack; | 
