fix stdint usage

This commit is contained in:
Anatol Belski
2014-07-01 11:50:36 +02:00
parent 1fdefc2755
commit 7194e31fe9
+4
View File
@@ -1,7 +1,11 @@
#ifndef REDIS_ARRAY_H
#define REDIS_ARRAY_H
#ifdef PHP_WIN32
#include "win32/php_stdint.h"
#else
#include <stdint.h>
#endif
#include "common.h"
void redis_destructor_redis_array(zend_rsrc_list_entry * rsrc TSRMLS_DC);