diff options
| author | Fenrir <[email protected]> | 2017-02-02 20:53:27 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2017-02-18 18:04:15 -0700 |
| commit | 2ed837f8e17cfbaf9bf823eeb92fe1eac22c6159 (patch) | |
| tree | de5e1d52afdbc71b1dec80053824d9b60cde3592 /ctr-std/src/lib.rs | |
| parent | Merge pull request #19 from FenrirWolf/thread_local (diff) | |
| download | ctru-rs-2ed837f8e17cfbaf9bf823eeb92fe1eac22c6159.tar.xz ctru-rs-2ed837f8e17cfbaf9bf823eeb92fe1eac22c6159.zip | |
ctr-std: Add Time module
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs index e0058f5..eebca4e 100644 --- a/ctr-std/src/lib.rs +++ b/ctr-std/src/lib.rs @@ -14,6 +14,7 @@ #![feature(int_error_internals)] #![feature(lang_items)] #![feature(macro_reexport)] +#![feature(oom)] #![feature(optin_builtin_traits)] #![feature(prelude_import)] #![feature(raw)] @@ -148,6 +149,7 @@ pub mod num; pub mod os; pub mod path; pub mod sync; +pub mod time; // Platform-abstraction modules #[macro_use] |