mirror of
https://github.com/facebook/zstd.git
synced 2025-12-07 00:02:39 -05:00
restore openVMS support (detected by @thatsafunnyname)
This commit is contained in:
parent
929f80288d
commit
d9b3cca4d3
4
NEWS
4
NEWS
@ -1,10 +1,12 @@
|
|||||||
v0.6.1
|
v0.6.1
|
||||||
New : zlib wrapper API, thanks to Przemyslaw Skibinski
|
New : zlib wrapper API, thanks to Przemyslaw Skibinski
|
||||||
|
New : Ability to compile compressor / decompressor separately
|
||||||
|
Changed : new lib directory structure
|
||||||
Fixed : Legacy codec v0.5 compatible with dictionary decompression
|
Fixed : Legacy codec v0.5 compatible with dictionary decompression
|
||||||
Fixed : Decoder corruption error (#173)
|
Fixed : Decoder corruption error (#173)
|
||||||
Fixed : null-string roundtrip (#176)
|
Fixed : null-string roundtrip (#176)
|
||||||
New : midipix support
|
|
||||||
New : benchmark mode can select directory as input
|
New : benchmark mode can select directory as input
|
||||||
|
Experimental : midipix support, VMS support
|
||||||
|
|
||||||
v0.6.0
|
v0.6.0
|
||||||
Stronger high compression modes, thanks to Przemyslaw Skibinski
|
Stronger high compression modes, thanks to Przemyslaw Skibinski
|
||||||
|
|||||||
@ -63,7 +63,7 @@ extern "C" {
|
|||||||
/*-**************************************************************
|
/*-**************************************************************
|
||||||
* Basic Types
|
* Basic Types
|
||||||
*****************************************************************/
|
*****************************************************************/
|
||||||
#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
|
#if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
typedef uint8_t BYTE;
|
typedef uint8_t BYTE;
|
||||||
typedef uint16_t U16;
|
typedef uint16_t U16;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user