mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
VS 2002 also doesn't support long long natively (thanks to Andras Kenez for the pointer)
git-svn-id: https://svn.code.sf.net/p/libcpuid/code/HEAD/libcpuid@109 3b4be424-7ac5-41d7-8526-f4ddcb85d872
This commit is contained in:
parent
18d2b9b075
commit
b175d4d6df
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ typedef signed char int8_t;
|
||||||
typedef unsigned char uint8_t;
|
typedef unsigned char uint8_t;
|
||||||
typedef signed short int16_t;
|
typedef signed short int16_t;
|
||||||
typedef unsigned short uint16_t;
|
typedef unsigned short uint16_t;
|
||||||
#if (defined _MSC_VER) && (_MSC_VER <= 1200)
|
#if (defined _MSC_VER) && (_MSC_VER <= 1300)
|
||||||
/* MSVC 6.0: no long longs ... */
|
/* MSVC 6.0: no long longs ... */
|
||||||
typedef signed __int64 int64_t;
|
typedef signed __int64 int64_t;
|
||||||
typedef unsigned __int64 uint64_t;
|
typedef unsigned __int64 uint64_t;
|
||||||
|
|
Loading…
Reference in a new issue