From 7a763b358df121d536d7694231c4c5d83d5ef739 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 13 Sep 2005 19:24:35 +0000 Subject: [PATCH] Nothing seems to use the "int64" type, and it apparently causes conflicts on some platform, so remove it. Thanks to Mike Protts for spotting this. [originally from svn r6304] --- int64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/int64.h b/int64.h index 0e924e11..1b23f826 100644 --- a/int64.h +++ b/int64.h @@ -7,7 +7,7 @@ typedef struct { unsigned long hi, lo; -} uint64, int64; +} uint64; uint64 uint64_div10(uint64 x, int *remainder); void uint64_decimal(uint64 x, char *buffer);