diff options
| author | Fenrir <[email protected]> | 2016-10-28 14:43:11 -0600 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2016-10-28 14:43:11 -0600 |
| commit | 4991de6d39125c6bad81b2b0dff6c17af0b1d767 (patch) | |
| tree | 3be02f2b2e611502626c0f14a08a4a3eda73b474 /src/lib.rs | |
| parent | ctru-sys: recreate types.h and libc bindings (diff) | |
| download | ctru-rs-4991de6d39125c6bad81b2b0dff6c17af0b1d767.tar.xz ctru-rs-4991de6d39125c6bad81b2b0dff6c17af0b1d767.zip | |
Use bitflags for fs services
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #![crate_type = "rlib"] #![crate_name = "ctru"] +#[macro_use] +extern crate bitflags; extern crate ctru_sys as libctru; pub mod console; |