macro_rules! eprintln {
() => { ... };
($($arg:tt)*) => { ... };
}
Expand description
Macro for printing to the standard error, with a newline.
Does not panic on failure to write - instead silently ignores errors.
See eprintln!
for
full documentation.
You may wish to use libc_print::std_name::*
to use a replacement
eprintln!
macro instead of this longer name.