Tried and failed to use unwinding crate: shall do it myself tomorrow.

This commit is contained in:
2025-03-05 03:24:26 +00:00
parent 014ec5310c
commit af995d1d76
8 changed files with 177 additions and 92 deletions
+3 -3
View File
@@ -237,12 +237,12 @@ macro_rules! print {
}
#[macro_export]
macro_rules! printlnerr {
macro_rules! eprintln {
() => ($crate::printerr!("\n"));
($($arg:tt)*) => ($crate::printerr!("{}\n", format_args!($($arg)*)));
($($arg:tt)*) => ($crate::eprint!("{}\n", format_args!($($arg)*)));
}
#[macro_export]
macro_rules! printerr {
macro_rules! eprint {
($($arg:tt)*) => ($crate::prelude::_print_err(format_args!($($arg)*)));
}