1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-11 16:18:06 -05:00

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]
This commit is contained in:
Ben Harris 2005-09-13 19:24:35 +00:00
parent 6e889dc4e2
commit 7a763b358d

View File

@ -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);