summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2019-05-29 19:06:13 (GMT)
committerYann Collet <cyan@fb.com>2019-05-29 19:06:13 (GMT)
commitb17f578a919b7e6b078cede2d52be29dd48c8e8c (patch)
treebf33d6c582a9e58d16abebed2c890a8c55c3fa56 /lib/lz4.c
parent4fc6b485500ac85cd6abca04bf0fdd687ade8213 (diff)
downloadlz4-b17f578a919b7e6b078cede2d52be29dd48c8e8c.zip
lz4-b17f578a919b7e6b078cede2d52be29dd48c8e8c.tar.gz
lz4-b17f578a919b7e6b078cede2d52be29dd48c8e8c.tar.bz2
added comments and macros for in-place (de)compression
Diffstat (limited to 'lib/lz4.c')
-rw-r--r--lib/lz4.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 070dd7e..19070c2 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -412,10 +412,6 @@ static const int LZ4_minLength = (MFLIMIT+1);
#define MB *(1 <<20)
#define GB *(1U<<30)
-#ifndef LZ4_DISTANCE_MAX /* can be user - defined at compile time */
-# define LZ4_DISTANCE_MAX 65535
-#endif
-
#if (LZ4_DISTANCE_MAX > 65535) /* max supported by LZ4 format */
# error "LZ4_DISTANCE_MAX is too big : must be <= 65535"
#endif