mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-06 05:37:10 +01:00
12 lines
222 B
C
12 lines
222 B
C
|
/* SPDX-License-Identifier: ISC */
|
||
|
#ifndef INTERNAL_H
|
||
|
#define INTERNAL_H
|
||
|
|
||
|
#include "comp/compressor.h"
|
||
|
|
||
|
extern compressor_t comp_lzma;
|
||
|
extern compressor_t comp_none;
|
||
|
extern compressor_t comp_zlib;
|
||
|
|
||
|
#endif /* INTERNAL_H */
|