lib: redefine print function.
parent
ef4b828df4
commit
d780a5d1e7
|
@ -6,7 +6,9 @@ const process = std.process;
|
||||||
const fs = std.fs;
|
const fs = std.fs;
|
||||||
|
|
||||||
pub const warn = std.debug.print;
|
pub const warn = std.debug.print;
|
||||||
pub const print = std.debug.print;
|
pub fn print(comptime format: []const u8, args: anytype) void {
|
||||||
|
nosuspend stdout.print(format, args) catch return;
|
||||||
|
}
|
||||||
|
|
||||||
const cli_arguments = @import("./cli_arguments.zig");
|
const cli_arguments = @import("./cli_arguments.zig");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue