]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Nothing seems to use the "int64" type, and it apparently causes conflicts
authorBen Harris <bjh21@bjh21.me.uk>
Tue, 13 Sep 2005 19:24:35 +0000 (19:24 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Tue, 13 Sep 2005 19:24:35 +0000 (19:24 +0000)
on some platform, so remove it.  Thanks to Mike Protts for spotting this.

[originally from svn r6304]

int64.h

diff --git a/int64.h b/int64.h
index 0e924e11ac05eeae908f3ce4a2720e95b897a51f..1b23f826b9a3c6f81493e926c307ae7457acf378 100644 (file)
--- 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);