Fixed MSVC2010 doesn't have inttypes.h problem.

This commit is contained in:
Takatoshi Kondo 2014-10-31 10:50:19 +09:00
parent 561e9ba105
commit b78b49a7bd

View File

@ -20,7 +20,7 @@
#include <stdio.h>
#include <string.h>
#if !defined(_MSC_VER) || _MSC_VER >= 1600
#if !defined(_MSC_VER) || _MSC_VER >= 1700
#include <inttypes.h>
#endif