summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatoliy Belsky <ab@php.net>2013-01-15 22:36:29 +0100
committerAnatoliy Belsky <ab@php.net>2013-01-15 22:36:29 +0100
commit9498cf6194496a1dd6b400e3e9a85ff005dc3dcd (patch)
treef35f907b5d82041aa4371cd252ede0751d17876f
parent4c38003dbdbb5b66c9d61db4cfd3248d15c93729 (diff)
downloadphp-git-9498cf6194496a1dd6b400e3e9a85ff005dc3dcd.tar.gz
fixed build
-rw-r--r--ext/standard/string.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c
index 58b5483651..42bf198175 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -23,7 +23,11 @@
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
#include <stdio.h>
-#include <stdint.h>
+#ifdef PHP_WIN32
+# include "win32/php_stdint.h"
+#else
+# include <stdint.h>
+#endif
#include "php.h"
#include "php_rand.h"
#include "php_string.h"