]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/build/feature/test-zlib.c
Merge branch 'x86-pmem-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[karo-tx-linux.git] / tools / build / feature / test-zlib.c
1 #include <zlib.h>
2
3 int main(void)
4 {
5         z_stream zs;
6
7         inflateInit(&zs);
8         return 0;
9 }