1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

refactor/uucore ~ use uucore args for executable macros

This commit is contained in:
Roy Ivy III 2021-07-28 16:20:30 -05:00 committed by Michael Debertol
parent 69ce4dc8e5
commit f56fc5bf44

View file

@ -9,7 +9,7 @@
#[macro_export] #[macro_export]
macro_rules! executable_os( macro_rules! executable_os(
() => ({ () => ({
&std::env::args_os().next().unwrap() &uucore::args_os().next().unwrap()
}) })
); );