Commit 8a79da2a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

enable the vle32enc(), we need it for writing gzip trailers

parent ab76cb9a
......@@ -126,6 +126,7 @@ vle16enc(void *pp, uint16_t u)
p[0] = u & 0xff;
p[1] = (u >> 8) & 0xff;
}
#endif
static __inline void
vle32enc(void *pp, uint32_t u)
......@@ -138,6 +139,7 @@ vle32enc(void *pp, uint32_t u)
p[3] = (u >> 24) & 0xff;
}
#if 0
static __inline void
vle64enc(void *pp, uint64_t u)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment