Files
zig/test/c.zig
T
GasInfinity 61cd38e8ac feat(libzigc): add common implementations of pthread_spin_*
* and remove their mingw, musl and wasi implementations
2026-04-21 09:03:06 +02:00

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");
}