Update Windows makefiles
[p5sagit/p5-mst-13.2.git] / ext / Compress / Zlib / examples / gzstream
CommitLineData
f4c6fd49 1#!/usr/local/bin/perl
2
3use strict ;
4local ($^W) = 1; #use warnings ;
5
6use Compress::Zlib ;
7
8binmode STDOUT; # gzopen only sets it on the fd
9
10my $gz = gzopen(\*STDOUT, "wb")
11 or die "Cannot open stdout: $gzerrno\n" ;
12
13while (<>) {
14 $gz->gzwrite($_)
15 or die "error writing: $gzerrno\n" ;
16}
17
18$gz->gzclose ;