Skip to content
Snippets Groups Projects
Commit 282393ae authored by Astro's avatar Astro :gear:
Browse files

l0dable: make println emit \n

parent 6d34a1f5
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ macro_rules! print { ...@@ -20,7 +20,7 @@ macro_rules! print {
#[macro_export] #[macro_export]
macro_rules! println { macro_rules! println {
() => ($crate::print!("\r")); () => ($crate::print!("\r"));
($($arg:tt)*) => ($crate::print!("{}\r", format_args!($($arg)*))); ($($arg:tt)*) => ($crate::print!("{}\r\n", format_args!($($arg)*)));
} }
#[doc(hidden)] #[doc(hidden)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment