macro_rules! kprintln {
() => { ... };
($lit:literal) => { ... };
($($arg:tt)*) => { ... };
}Expand description
Print a string literal followed by newline (all architectures). For formatted output, works on x86_64 and RISC-V only; no-op on AArch64.