commit | 52396724f8285d099dcdba131b751ffe5417a283 | [log] [tgz] |
---|---|---|
author | Martin Storsjo <martin@martin.st> | Fri Jul 06 17:14:12 2012 +0300 |
committer | Martin Storsjo <martin@martin.st> | Thu Jul 12 17:06:45 2012 +0300 |
tree | 28b49a23109223b38aeaba80fd92832ea255a131 | |
parent | 2228e360595641dd906bf1773307f43d304f5b2e [diff] |
Only use __int64 on MSVC, not on all win32 compilers Mingw32 doesn't define the __int64 types. Change-Id: Ia45add37be1bf85abde664fd6e382334a6bb4498
diff --git a/libSYS/include/machine_type.h b/libSYS/include/machine_type.h index b5642b2..d04a8e8 100644 --- a/libSYS/include/machine_type.h +++ b/libSYS/include/machine_type.h
@@ -173,7 +173,7 @@ /* Define 64 bit base integer type. */ -#ifdef _WIN32 +#ifdef _MSC_VER typedef __int64 INT64; typedef unsigned __int64 UINT64; #else