mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-06 05:37:10 +01:00
David Oberhollenzer
1205ca0f3b
- Remove compressor registration interface. Doesn't work in a static library, since all the files containing no exported members are optimized away at link time. - Repack as seperate utility library. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
11 lines
222 B
C
11 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 */
|