Skip to content

Commit

Permalink
Fixed 64-bit ints in LZMA SDK on Watcom C.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 17, 2017
1 parent f6c8309 commit 7ab5cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs_lzmasdk.h
Expand Up @@ -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
Expand Down

0 comments on commit 7ab5cc5

Please sign in to comment.