aboutsummaryrefslogtreecommitdiff
path: root/src/io/io_stub.zig
blob: b1f6d3f579eb06baf71bccb7c3f876c24c04498a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 {}