Thanks to visit codestin.com Credit goes to github.com
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 9499949 commit 400f11cCopy full SHA for 400f11c
library.c
@@ -36,6 +36,13 @@ PHPAPI int usleep(unsigned int useconds);
36
#define SCORE_DECODE_INT 1
37
#define SCORE_DECODE_DOUBLE 2
38
39
+#ifdef PHP_WIN32
40
+ # if PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION <= 4
41
+ /* This proto is available from 5.5 on only */
42
+ PHPAPI int usleep(unsigned int useconds);
43
+ # endif
44
+#endif
45
+
46
extern zend_class_entry *redis_ce;
47
extern zend_class_entry *redis_exception_ce;
48
extern zend_class_entry *spl_ce_RuntimeException;
0 commit comments