diff options
author | Andi Gutmans <andi@php.net> | 2000-03-13 15:43:40 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-03-13 15:43:40 +0000 |
commit | e92f6f15cb8970c0ded522becedd3c04cefdddf6 (patch) | |
tree | e3331257c46eee811755beae347475ec678b0583 /Zend/zend.h | |
parent | a32c54bdbb68f4f9126217893fca51c62c02c702 (diff) | |
download | php-git-e92f6f15cb8970c0ded522becedd3c04cefdddf6.tar.gz |
- define zend_uint and zend_uchar and use them in a few places
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 6104146337..aac08cc057 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -107,6 +107,8 @@ #include "zend_alloc.h" typedef unsigned char zend_bool; +typedef unsigned char zend_uchar; +typedef unsigned int zend_uint; #undef SUCCESS #undef FAILURE |