summary refs log tree commit diff
path: root/devices/src/cmos.rs
diff options
context:
space:
mode:
Diffstat (limited to 'devices/src/cmos.rs')
-rw-r--r--devices/src/cmos.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/devices/src/cmos.rs b/devices/src/cmos.rs
index 70caff7..cf5dd7e 100644
--- a/devices/src/cmos.rs
+++ b/devices/src/cmos.rs
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
+use libc::{gmtime_r, time, time_t, tm};
 use std::mem;
-use libc::{tm, time_t, time, gmtime_r};
 
 use BusDevice;