lib: redefine print function.

master
Philippe Pittoli 2022-04-23 20:49:14 +02:00
parent ef4b828df4
commit d780a5d1e7
1 changed files with 3 additions and 1 deletions

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");