Mezzaluna/src/Utils.zig
2025-12-04 23:50:39 -05:00

8 lines
166 B
Zig

const Utils = @This();
const std = @import("std");
pub fn oomPanic() noreturn {
std.log.err("Out of memory error, exiting with 1", .{});
std.process.exit(1);
}