Skip to content

Commit 9498cf6

Browse files
committed
fixed build
1 parent 4c38003 commit 9498cf6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ext/standard/string.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
2424

2525
#include <stdio.h>
26-
#include <stdint.h>
26+
#ifdef PHP_WIN32
27+
# include "win32/php_stdint.h"
28+
#else
29+
# include <stdint.h>
30+
#endif
2731
#include "php.h"
2832
#include "php_rand.h"
2933
#include "php_string.h"

0 commit comments

Comments
 (0)