xref
: /
linux
/
tools
/
build
/
feature
/
test-zlib.c
(revision b6ebbac51bedf9e98e837688bc838f400196da5e)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
zlib.h
>
2
3
int
main
(
void
)
4
{
5
z_stream
zs
;
6
7
inflateInit
(&
zs
);
8
return
0;
9
}
10