]> granicus.if.org Git - php/commitdiff
add missing headers for SIZE_MAX
authorAnatol Belski <ab@php.net>
Thu, 28 Jan 2016 12:46:34 +0000 (13:46 +0100)
committerAnatol Belski <ab@php.net>
Thu, 28 Jan 2016 12:46:34 +0000 (13:46 +0100)
ext/standard/iptc.c

index 6f8aa5dc3e3bc177a1831472d4ff1f666ae0d9a9..41a924b4b25747dd5d8a5e6a44caf67a71bc55f8 100644 (file)
 
 #include <sys/stat.h>
 
+#ifdef PHP_WIN32
+# include "win32/php_stdint.h"
+#else
+# if HAVE_INTTYPES_H
+#  include <inttypes.h>
+# elif HAVE_STDINT_H
+#  include <stdint.h>
+# endif
+#endif
 
 /* some defines for the different JPEG block types */
 #define M_SOF0  0xC0            /* Start Of Frame N */