mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00
10 lines
149 B
C
10 lines
149 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <stddef.h>
|
||
|
#include <libelf.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
elf_compress(NULL, ELFCOMPRESS_ZSTD, 0);
|
||
|
return 0;
|
||
|
}
|