From: Yann Collet Date: Mon, 9 May 2016 10:28:20 +0000 (+0200) Subject: fixed datagen X-Git-Tag: v0.6.1^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7828905763abdbd7a9d267ac47f0c451ad7659a;p=thirdparty%2Fzstd.git fixed datagen --- diff --git a/NEWS b/NEWS index 573310d71..84dc723d9 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ v0.6.1 Fixed : Legacy codec v0.5 compatible with dictionary decompression Fixed : Decoder corruption error (#173) +New : midipix support v0.6.0 Stronger high compression modes, thanks to Przemyslaw Skibinski @@ -99,7 +100,7 @@ frame concatenation support v0.1.1 fix compression bug detects write-flush errors - +git@github.com:Cyan4973/zstd.git v0.1.0 first release diff --git a/programs/datagen.c b/programs/datagen.c index 7ce0d84d1..8d872f118 100644 --- a/programs/datagen.c +++ b/programs/datagen.c @@ -29,29 +29,7 @@ #include /* malloc */ #include /* FILE, fwrite */ #include /* memcpy */ -<<<<<<< HEAD #include "mem.h" -======= - - -/*-************************************ -* Basic Types -**************************************/ -#if !defined (__VMS) && ( defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */ ) -# include - typedef uint8_t BYTE; - typedef uint16_t U16; - typedef uint32_t U32; - typedef int32_t S32; - typedef uint64_t U64; -#else - typedef unsigned char BYTE; - typedef unsigned short U16; - typedef unsigned int U32; - typedef signed int S32; - typedef unsigned long long U64; -#endif ->>>>>>> 59b6ba767710823fa688ff1f4b7ea443567f0b27 /*-************************************