Fix missing uint64_t definition in parsers.c under Windows
authorDhruva Krishnamurthy <dhruvakm@gmail.com>
Sat, 18 Oct 2008 14:43:20 +0200
changeset 7122 3cf699e89e48
parent 7121 b801d6e5dc83
child 7123 716277f5867e
Fix missing uint64_t definition in parsers.c under Windows
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 <stdint.h>
 # endif