]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/build/feature/test-zlib.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / build / feature / test-zlib.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
e92ce12e
NK
2#include <zlib.h>
3
4int main(void)
5{
6 z_stream zs;
7
8 inflateInit(&zs);
9 return 0;
10}