#![no_std]
libc print/println/eprint/eprintlnImplements println!
and eprintln!
on the libc
crate without
requiring the use of an allocator.
Allows you to use these macros in a #![no_std]
context, or in a
situation where the traditional Rust streams might not be available
(ie: at process shutdown time).
Exactly as you'd use println!
or eprintln!
.