mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +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 <stdarg.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
||||
typedef __int64 int64_t;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
|
|
Loading…
Reference in a new issue