Fixed 64-bit ints in LZMA SDK on Watcom C.

This commit is contained in:
Ryan C. Gordon 2017-07-17 14:56:52 -04:00
parent f6c830968c
commit 7ab5cc52ce
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ typedef unsigned long UInt64;
#else
#if defined(_MSC_VER) || defined(__BORLANDC__)
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
typedef __int64 Int64;
typedef unsigned __int64 UInt64;
#define UINT64_CONST(n) n