mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
7 lines
138 B
Rust
7 lines
138 B
Rust
#![crate_type = "lib"]
|
|
|
|
#[macro_export]
|
|
macro_rules! mywrite {
|
|
($dst:expr, $($arg:tt)*) => ($dst.write_fmt(format_args!($($arg)*)))
|
|
}
|