mirror of
https://github.com/ziglang/zig.git
synced 2024-11-16 09:03:12 +00:00
ed36dbbd9c
that's all this commit does. further commits will fix cli flags and such. see #2221
10 lines
285 B
Zig
10 lines
285 B
Zig
pub const Stack = @import("atomic/stack.zig").Stack;
|
|
pub const Queue = @import("atomic/queue.zig").Queue;
|
|
pub const Int = @import("atomic/int.zig").Int;
|
|
|
|
test "std.atomic" {
|
|
_ = @import("atomic/stack.zig");
|
|
_ = @import("atomic/queue.zig");
|
|
_ = @import("atomic/int.zig");
|
|
}
|