mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
add missing include
This commit is contained in:
parent
807abf36c1
commit
4aefd5f903
10
include/linux/zstd.h
Normal file
10
include/linux/zstd.h
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include <zstd.h>
|
||||||
|
|
||||||
|
#define ZSTD_initDCtx(w, s) ZSTD_initStaticDCtx(w, s)
|
||||||
|
#define ZSTD_initCCtx(w, s) ZSTD_initStaticCCtx(w, s)
|
||||||
|
|
||||||
|
#define ZSTD_compressCCtx(w, dst, d_len, src, src_len, params) \
|
||||||
|
ZSTD_compressCCtx(w, dst, d_len, src, src_len, 0)
|
||||||
|
|
||||||
|
#define ZSTD_CCtxWorkspaceBound(p) ZSTD_estimateCCtxSize(0)
|
||||||
|
#define ZSTD_DCtxWorkspaceBound() ZSTD_estimateDCtxSize()
|
Loading…
Reference in New Issue
Block a user