mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
13 lines
312 B
Zig
13 lines
312 B
Zig
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 {
|
|
if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest;
|
|
_ = deflate;
|
|
_ = gzip;
|
|
_ = zlib;
|
|
}
|