#include "zend_objects.h"
#include "zend_objects_API.h"
#include "zend_globals.h"
+#include "php_stdint.h"
#define ZEND_CLOSURE_PRINT_NAME "Closure object"
zend_fcall_info fci;
zend_fcall_info_cache fci_cache;
zval *my_params;
- zend_uint my_param_count = 0;
+ uint32_t my_param_count = 0;
zend_function my_function;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o*", &newthis, &my_params, &my_param_count) == FAILURE) {