changed : ZSTD_LEGACY_SUPPORT set to 0 by default within zstd_decompress.c (#113)

This commit is contained in:
Yann Collet 2016-01-18 12:03:27 +01:00
parent a87278a4f0
commit fba6aed175
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ extern "C" {
/* *************************************************************** /* ***************************************************************
* Tuning parameters * Export parameters
*****************************************************************/ *****************************************************************/
/*! /*!
* ZSTD_DLL_EXPORT : * ZSTD_DLL_EXPORT :

View File

@ -44,10 +44,10 @@
/*! /*!
* LEGACY_SUPPORT : * LEGACY_SUPPORT :
* ZSTD_decompress() can decode older formats (starting from zstd 0.1+) * ZSTD_decompress() can decode older formats (v0.1+) if set to 1
*/ */
#ifndef ZSTD_LEGACY_SUPPORT #ifndef ZSTD_LEGACY_SUPPORT
# define ZSTD_LEGACY_SUPPORT 1 # define ZSTD_LEGACY_SUPPORT 0
#endif #endif