aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFenrir <[email protected]>2016-04-30 18:39:26 -0700
committerFenrir <[email protected]>2016-04-30 18:39:26 -0700
commit184ec0b247bbec0748d7888f36ccdae076a2d9cb (patch)
tree30a90bb80dc407b00493cb870a6c4c1fb9ab3e43 /src/lib.rs
parentSplit raw bindings into a separate crate (diff)
downloadctru-rs-184ec0b247bbec0748d7888f36ccdae076a2d9cb.tar.xz
ctru-rs-184ec0b247bbec0748d7888f36ccdae076a2d9cb.zip
Deleted old files
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 767f03d..3ba65e4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,9 @@
-#![feature(lang_items)]
#![no_std]
+#![feature(lang_items)]
#![crate_type = "rlib"]
#![crate_name = "ctru"]
-pub mod raw;
+extern crate ctru_sys as libctru;
pub type Result = i32;
pub type Handle = u32;