diff options
Diffstat (limited to 'src/io')
-rw-r--r-- | src/io/io_stub.zig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/io/io_stub.zig b/src/io/io_stub.zig new file mode 100644 index 000000000..b1f6d3f57 --- /dev/null +++ b/src/io/io_stub.zig @@ -0,0 +1,11 @@ +const std = @import("std"); +const IO = struct { + buffer: i32 = 0, +}; + +pub fn init(_: anytype, _: anytype) anyerror!void {} + +pub var global: IO = undefined; +pub var global_loaded: bool = false; + +fn buffer_limit(_: usize) usize {} |