Skip to content

Commit

Permalink
Fix broken build w/ Visual C++ < 2010
Browse files Browse the repository at this point in the history
Regression introduced by dfefba7
(Windows doesn't always have stdint.h.)
  • Loading branch information
dcommander committed Oct 4, 2016
1 parent 7bfb22a commit a0047bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions jmemmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
#include "jinclude.h"
#include "jpeglib.h"
#include "jmemsys.h" /* import the system-dependent declarations */
#ifndef _WIN32
#include <stdint.h>
#endif
#include <limits.h>

#ifndef NO_GETENV
Expand Down

0 comments on commit a0047bd

Please sign in to comment.