mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Use stdint.h on Visual C if >= Visual Studio 2010.
This commit is contained in:
parent
82977da9c8
commit
b5c54ec019
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ is licensed until the GPLv2. Do not mingle code, please!
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
||||||
typedef __int64 int64_t;
|
typedef __int64 int64_t;
|
||||||
#else
|
#else
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
Loading…
Reference in a new issue