mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
61cd38e8ac
* and remove their mingw, musl and wasi implementations
14 lines
340 B
Zig
14 lines
340 B
Zig
const builtin = @import("builtin");
|
|
const std = @import("std");
|
|
|
|
test {
|
|
_ = @import("c/inttypes.zig");
|
|
_ = @import("c/math.zig");
|
|
_ = @import("c/pthread.zig");
|
|
_ = @import("c/search.zig");
|
|
_ = @import("c/stdlib.zig");
|
|
_ = @import("c/string.zig");
|
|
_ = @import("c/strings.zig");
|
|
_ = @import("c/unistd.zig");
|
|
}
|