changeset 7122:3cf699e89e48

Fix missing uint64_t definition in parsers.c under Windows
author Dhruva Krishnamurthy <dhruvakm@gmail.com>
date Sat, 18 Oct 2008 14:43:20 +0200
parents b801d6e5dc83
children 716277f5867e
files mercurial/parsers.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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