Add another missing import in code example

This commit is contained in:
Philipp Oppermann
2019-01-25 14:11:45 +01:00
parent d84127a7a8
commit c677103c5e

View File

@@ -285,6 +285,7 @@ We can easily provoke such a deadlock in our kernel by printing something in the
pub extern "C" fn _start() -> ! {
[]
loop {
use blog_os::print;
print!("-"); // new
}
}