Browse Source

Remove extern crate alloc and core declarations

pull/10/head
Fenrir 9 years ago
parent
commit
9f8dc9fa5a
  1. 6
      src/lib.rs

6
src/lib.rs

@ -1,12 +1,8 @@
#![feature(lang_items, alloc, collections, macro_reexport, allow_internal_unstable)] #![feature(lang_items)]
#![no_std] #![no_std]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![crate_name = "ctru"] #![crate_name = "ctru"]
extern crate alloc;
#[macro_reexport(format, vec)]
extern crate collections;
extern crate ctru_sys as libctru; extern crate ctru_sys as libctru;
pub mod console; pub mod console;

Loading…
Cancel
Save