mirror of
https://github.com/MezzalunaWM/Mezzaluna.git
synced 2026-03-07 19:49:53 -05:00
8 lines
166 B
Zig
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);
|
|
}
|