Files
bun.sh/src/io/io_stub.zig
Jarred Sumner 50560e169c WASM
2022-02-27 23:20:10 -08:00

12 lines
232 B
Zig

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 {}