We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a77d0 commit 512ff32Copy full SHA for 512ff32
Zend/zend.h
@@ -117,6 +117,7 @@
117
typedef unsigned char zend_bool;
118
typedef unsigned char zend_uchar;
119
typedef unsigned int zend_uint;
120
+typedef unsigned short zend_ushort;
121
122
#undef SUCCESS
123
#undef FAILURE
@@ -155,9 +156,9 @@ typedef union _zvalue_value {
155
156
struct _zval_struct {
157
/* Variable information */
158
zvalue_value value; /* value */
- unsigned char type; /* active type */
159
- unsigned char is_ref;
160
- short refcount;
+ zend_uchar type; /* active type */
+ zend_uchar is_ref;
161
+ zend_ushort refcount;
162
};
163
164
0 commit comments