make flate crc32 work when ulong is 64 bits

R=, rsc
CC=
http://codereview.appspot.com/203061
This commit is contained in:
Russ Cox 2010-02-07 16:51:28 -08:00
parent 28afa898ee
commit 9a05452085
7 changed files with 25 additions and 19 deletions

View file

@ -157,6 +157,13 @@ typedef intptr_t intptr;
typedef uint32_t u32int;
typedef int32_t s32int;
typedef u32int uint32;
typedef s32int int32;
typedef u16int uint16;
typedef s16int int16;
typedef u64int uint64;
typedef s64int int64;
#undef _NEEDUCHAR
#undef _NEEDUSHORT
#undef _NEEDUINT