1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#[cfg(feature = "stderr_output")]
#[macro_export]
macro_rules! write_error
{
($($arg:tt)*) => (
eprintln!($($arg)*)
)
}
#[cfg(not(feature = "stderr_output"))]
#[inline]
pub
fn empty_func() { return; }
#[cfg(not(feature = "stderr_output"))]
#[macro_export]
macro_rules! write_error
{
($($arg:tt)*) => (
$crate::empty_func()
)
}