Use stdint.h on Visual C if >= Visual Studio 2010.

This commit is contained in:
Ryan C. Gordon 2017-06-02 01:31:45 -04:00
parent 82977da9c8
commit b5c54ec019
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ is licensed until the GPLv2. Do not mingle code, please!
#include <string.h>
#include <stdarg.h>
#ifdef _MSC_VER
#if defined(_MSC_VER) && (_MSC_VER < 1600)
typedef __int64 int64_t;
#else
#include <stdint.h>