mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
916e1b7f7f
PD#SWPL-169230 Problem: Previous commit https://scgit.amlogic.com/#/c/427562/ including a close source binary for zstd compress, which have license problems Solution: 1, remove this binary in auto-patch; 2, add source code for this binary Verify: S7D Change-Id: Ic0355b6ad3d0d91a9772d007fa2c9797f18004b1 Signed-off-by: Tao Zeng <tao.zeng@amlogic.com>
25 lines
595 B
C
25 lines
595 B
C
/*
|
|
* Copyright (c) Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
* in the COPYING file in the root directory of this source tree).
|
|
* You may select, at your option, one of the above-listed licenses.
|
|
*/
|
|
|
|
#ifndef ZSTDCLI_TRACE_H
|
|
#define ZSTDCLI_TRACE_H
|
|
|
|
/**
|
|
* Enable tracing - log to filename.
|
|
*/
|
|
void TRACE_enable(char const* filename);
|
|
|
|
/**
|
|
* Shut down the tracing library.
|
|
*/
|
|
void TRACE_finish(void);
|
|
|
|
#endif /* ZSTDCLI_TRACE_H */
|