diff options
| author | Fenrir <[email protected]> | 2016-04-30 18:39:26 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2016-04-30 18:39:26 -0700 |
| commit | 184ec0b247bbec0748d7888f36ccdae076a2d9cb (patch) | |
| tree | 30a90bb80dc407b00493cb870a6c4c1fb9ab3e43 /src/lib.rs | |
| parent | Split raw bindings into a separate crate (diff) | |
| download | ctru-rs-184ec0b247bbec0748d7888f36ccdae076a2d9cb.tar.xz ctru-rs-184ec0b247bbec0748d7888f36ccdae076a2d9cb.zip | |
Deleted old files
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |