diff options
author | Conrad Meyer <cem@FreeBSD.org> | 2018-10-22 19:45:18 +0000 |
---|---|---|
committer | Conrad Meyer <cem@FreeBSD.org> | 2018-10-22 19:45:18 +0000 |
commit | 1767cc4987b68ace957ea34c20634485d4232611 (patch) | |
tree | 61ddbc2b340b4c1007a520df793f7222a1b4bb6f /lib/compress/zstd_lazy.h | |
parent | 653667f9dc9cc0169deeca1a82a60c2e91d5683a (diff) |
Diffstat (limited to 'lib/compress/zstd_lazy.h')
-rw-r--r-- | lib/compress/zstd_lazy.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compress/zstd_lazy.h b/lib/compress/zstd_lazy.h index a9c4daed25829..74e1fd6970268 100644 --- a/lib/compress/zstd_lazy.h +++ b/lib/compress/zstd_lazy.h @@ -11,12 +11,13 @@ #ifndef ZSTD_LAZY_H #define ZSTD_LAZY_H -#include "zstd_compress.h" - #if defined (__cplusplus) extern "C" { #endif +#include "mem.h" /* U32 */ +#include "zstd.h" /* ZSTD_CCtx, size_t */ + U32 ZSTD_insertAndFindFirstIndex (ZSTD_CCtx* zc, const BYTE* ip, U32 mls); void ZSTD_updateTree(ZSTD_CCtx* zc, const BYTE* const ip, const BYTE* const iend, const U32 nbCompares, const U32 mls); void ZSTD_updateTree_extDict(ZSTD_CCtx* zc, const BYTE* const ip, const BYTE* const iend, const U32 nbCompares, const U32 mls); |