diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:22:37 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:22:37 -0700 |
commit | 4b5a43a219d51066c01ff2ab86af18b967f2d0dd (patch) | |
tree | 4dcaf0cd18751d04cf638a9a6ec521990d4f2e90 /contrib/iostream2 | |
parent | 086e982175da84b3db958191031380794315f95f (diff) | |
download | zlib-1.2.0.5.tar.gz zlib-1.2.0.5.tar.bz2 zlib-1.2.0.5.zip |
zlib 1.2.0.5v1.2.0.5
Diffstat (limited to 'contrib/iostream2')
-rw-r--r-- | contrib/iostream2/zstream_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/iostream2/zstream_test.cpp b/contrib/iostream2/zstream_test.cpp index 5bbd56c..6273f62 100644 --- a/contrib/iostream2/zstream_test.cpp +++ b/contrib/iostream2/zstream_test.cpp | |||
@@ -4,9 +4,9 @@ | |||
4 | #include <iomanip.h> | 4 | #include <iomanip.h> |
5 | 5 | ||
6 | void main() { | 6 | void main() { |
7 | char h[256] = "Hello"; | 7 | char h[256] = "Hello"; |
8 | char* g = "Goodbye"; | 8 | char* g = "Goodbye"; |
9 | ozstream out("temp.gz"); | 9 | ozstream out("temp.gz"); |
10 | out < "This works well" < h < g; | 10 | out < "This works well" < h < g; |
11 | out.close(); | 11 | out.close(); |
12 | 12 | ||