std: move time implementations to sys (preparation)
This commit is contained in:
parent
ebf13cca58
commit
814d902c50
2 changed files with 5 additions and 0 deletions
|
|
@ -26,6 +26,7 @@ pub mod stdio;
|
|||
pub mod sync;
|
||||
pub mod thread;
|
||||
pub mod thread_local;
|
||||
pub mod time;
|
||||
|
||||
// FIXME(117276): remove this, move feature implementations into individual
|
||||
// submodules.
|
||||
|
|
|
|||
4
library/std/src/sys/time/mod.rs
Normal file
4
library/std/src/sys/time/mod.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
cfg_select! {
|
||||
}
|
||||
|
||||
pub use imp::{Instant, SystemTime, UNIX_EPOCH};
|
||||
Loading…
Add table
Add a link
Reference in a new issue