# HG changeset patch # User Dhruva Krishnamurthy # Date 1224333800 -7200 # Node ID 3cf699e89e48f1ebffd4258b5f949f961882f138 # Parent b801d6e5dc834a8fc5d2039d5800dfaf438996fa Fix missing uint64_t definition in parsers.c under Windows diff -r b801d6e5dc83 -r 3cf699e89e48 mercurial/parsers.c --- a/mercurial/parsers.c Sat Oct 18 04:26:09 2008 -0500 +++ b/mercurial/parsers.c Sat Oct 18 14:43:20 2008 +0200 @@ -137,6 +137,7 @@ /* msvc 6.0 has problems */ # define inline __inline typedef unsigned long uint32_t; +typedef unsigned __int64 uint64_t; # else # include # endif