Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nix-rust/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ba5c2dde725cc94c7df00ca189bc0000bf65e796
Choose a base ref
..
head repository: nix-rust/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 36ff2c097bf0881f2b997e302634f3fb452c2da4
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 src/sys/time.rs
6 changes: 3 additions & 3 deletions src/sys/time.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::convert::From;
use std::time::Duration;
use std::{cmp, fmt, ops};
use std::time::Duration;
use std::convert::From;
use libc::{timespec, timeval};
#[cfg_attr(target_env = "musl", allow(deprecated))] // https://github.com/rust-lang/libc/issues/1848
pub use libc::{suseconds_t, time_t};
pub use libc::{time_t, suseconds_t};

#[cfg(any(
all(feature = "time", any(target_os = "android", target_os = "linux")),