mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 05:42:43 +00:00
12 lines
232 B
Zig
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 {}
|