lib: redefine print function.

This commit is contained in:
Philippe Pittoli 2022-04-23 20:49:14 +02:00
parent ef4b828df4
commit d780a5d1e7

View file

@ -6,7 +6,9 @@ const process = std.process;
const fs = std.fs;
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");