Skip to content
Snippets Groups Projects
Commit 91894eea authored by John Hodge's avatar John Hodge
Browse files

Remove std from arch lib, explicitly use StrSlice

parent 48f11389
No related merge requests found
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
// //
#![feature(asm)] #![feature(asm)]
#![crate_type="lib"] #![crate_type="lib"]
//#![no_std] #![no_std]
extern crate core;
//extern crate core; use core::str::StrSlice;
//use core::raw::Slice;
pub fn puts(text: &str) pub fn puts(text: &str)
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// //
// //
#![no_std] #![no_std]
extern crate core;
extern crate arch; extern crate arch;
#[no_mangle] #[no_mangle]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment