aboutsummaryrefslogtreecommitdiff
path: root/lib/std/compress.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-09-22 11:41:21 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-09-22 11:41:21 -0700
commite2d1f9874df2a9221aaa9ec55bd2974b70601f64 (patch)
treeeff7919b0717e193aa53b70fcee862d6f33deddb /lib/std/compress.zig
parent52b8239a22aa37fe3914427cd4e2905231769e59 (diff)
parent58ee5f4e61cd9b7a9ba65798e2214efa3753a733 (diff)
downloadzig-e2d1f9874df2a9221aaa9ec55bd2974b70601f64.tar.gz
zig-e2d1f9874df2a9221aaa9ec55bd2974b70601f64.zip
Merge remote-tracking branch 'origin/master' into llvm11
Diffstat (limited to 'lib/std/compress.zig')
-rw-r--r--lib/std/compress.zig15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/std/compress.zig b/lib/std/compress.zig
new file mode 100644
index 0000000000..95f496021e
--- /dev/null
+++ b/lib/std/compress.zig
@@ -0,0 +1,15 @@
+// SPDX-License-Identifier: MIT
+// Copyright (c) 2015-2020 Zig Contributors
+// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
+// The MIT license requires this copyright notice to be included in all copies
+// and substantial portions of the software.
+const std = @import("std.zig");
+
+pub const deflate = @import("compress/deflate.zig");
+pub const gzip = @import("compress/gzip.zig");
+pub const zlib = @import("compress/zlib.zig");
+
+test "" {
+ _ = gzip;
+ _ = zlib;
+}