Skip to content

Commit 686a178

Browse files
committed
add missing headers for SIZE_MAX
1 parent f4d7bbf commit 686a178

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ext/standard/iptc.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@
3838

3939
#include <sys/stat.h>
4040

41+
#ifdef PHP_WIN32
42+
# include "win32/php_stdint.h"
43+
#else
44+
# if HAVE_INTTYPES_H
45+
# include <inttypes.h>
46+
# elif HAVE_STDINT_H
47+
# include <stdint.h>
48+
# endif
49+
#endif
4150

4251
/* some defines for the different JPEG block types */
4352
#define M_SOF0 0xC0 /* Start Of Frame N */

0 commit comments

Comments
 (0)