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 a2394df commit b07e55fCopy full SHA for b07e55f
main/SAPI.h
@@ -27,6 +27,7 @@
27
#include "zend_operators.h"
28
#ifdef PHP_WIN32
29
#include "win95nt.h"
30
+#include "win32/php_stdint.h"
31
#endif
32
#include <sys/stat.h>
33
main/rfc1867.c
@@ -34,6 +34,10 @@
34
#include "rfc1867.h"
35
#include "ext/standard/php_string.h"
36
37
+#if defined(_MSC_VER)
38
+# define atoll(s) _atoi64(s)
39
+#endif
40
+
41
#define DEBUG_FILE_UPLOAD ZEND_DEBUG
42
43
static int dummy_encoding_translation(TSRMLS_D)
0 commit comments