From da8dac39acc0f90a1bb1f25e8fc31ced27cb5e28 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Tue, 28 Dec 2021 20:03:52 -0800 Subject: [PATCH] remove accidental reformatting Signed-off-by: Brian L. Troutwine --- src/sys/time.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/sys/time.rs b/src/sys/time.rs index d09f3b58da..0a77249153 100644 --- a/src/sys/time.rs +++ b/src/sys/time.rs @@ -1,10 +1,9 @@ -#[cfg_attr(target_env = "musl", allow(deprecated))] -// https://github.com/rust-lang/libc/issues/1848 -pub use libc::{suseconds_t, time_t}; -use libc::{timespec, timeval}; use std::convert::From; use std::time::Duration; use std::{cmp, fmt, ops}; +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}; #[cfg(all( any(target_os = "android",