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