Fix broken build w/ Visual C++ < 2010

Regression introduced by dfefba7752
(Windows doesn't always have stdint.h.)
This commit is contained in:
DRC
2016-10-04 13:25:34 -05:00
parent 7bfb22af12
commit a0047bdea4

View File

@@ -32,7 +32,9 @@
#include "jinclude.h" #include "jinclude.h"
#include "jpeglib.h" #include "jpeglib.h"
#include "jmemsys.h" /* import the system-dependent declarations */ #include "jmemsys.h" /* import the system-dependent declarations */
#ifndef _WIN32
#include <stdint.h> #include <stdint.h>
#endif
#include <limits.h> #include <limits.h>
#ifndef NO_GETENV #ifndef NO_GETENV