Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
0002 /*
0003  * Copyright (c) Facebook, Inc.
0004  * All rights reserved.
0005  *
0006  * This source code is licensed under both the BSD-style license (found in the
0007  * LICENSE file in the root directory of this source tree) and the GPLv2 (found
0008  * in the COPYING file in the root directory of this source tree).
0009  * You may select, at your option, one of the above-listed licenses.
0010  */
0011 
0012 /*
0013  * This file includes every .c file needed for decompression.
0014  * It is used by lib/decompress_unzstd.c to include the decompression
0015  * source into the translation-unit, so it can be used for kernel
0016  * decompression.
0017  */
0018 
0019 #include "common/debug.c"
0020 #include "common/entropy_common.c"
0021 #include "common/error_private.c"
0022 #include "common/fse_decompress.c"
0023 #include "common/zstd_common.c"
0024 #include "decompress/huf_decompress.c"
0025 #include "decompress/zstd_ddict.c"
0026 #include "decompress/zstd_decompress.c"
0027 #include "decompress/zstd_decompress_block.c"
0028 #include "zstd_decompress_module.c"