chore: initial commit

This commit is contained in:
utox39
2025-02-23 16:55:11 +01:00
commit 9e5f5ef3cf
8 changed files with 206 additions and 0 deletions

8
src/root.zig Normal file
View File

@@ -0,0 +1,8 @@
const std = @import("std");
pub const os_module = switch (@import("builtin").os.tag) {
.linux => @import("linux/linux.zig"),
.macos => @import("macos/macos.zig"),
.windows => @import("windows/windows.zig"),
else => @compileError("Unsupported operating system"),
};