Skip to content

Commit b9d8fec

Browse files
committed
- fix windows build
1 parent 9525eb6 commit b9d8fec

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

php_fastlz.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
#include "zend_hash.h"
1212
#include "ext/standard/info.h"
1313
#include "SAPI.h"
14-
#include "stdint.h"
15-
14+
#ifdef PHP_WIN32
15+
# include "win32/php_stdint.h"
16+
#else
17+
# include "stdint.h"
18+
#endif
1619
#include "php_fastlz.h"
1720
#include "libfastlz/fastlz.h"
1821

0 commit comments

Comments
 (0)