summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/time/clock.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/time/clock.rs')
-rw-r--r--vendor/rustix/src/time/clock.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/rustix/src/time/clock.rs b/vendor/rustix/src/time/clock.rs
index 2aa38b213..db585d1cc 100644
--- a/vendor/rustix/src/time/clock.rs
+++ b/vendor/rustix/src/time/clock.rs
@@ -1,10 +1,10 @@
use crate::{backend, io};
-pub use backend::time::types::{Nsecs, Secs, Timespec};
+pub use crate::timespec::{Nsecs, Secs, Timespec};
/// `clockid_t`
#[cfg(not(target_os = "wasi"))]
-pub use backend::time::types::{ClockId, DynamicClockId};
+pub use crate::clockid::{ClockId, DynamicClockId};
/// `clock_getres(id)`—Returns the resolution of a clock.
///