summary refs log tree commit diff
path: root/kvm_sys
diff options
context:
space:
mode:
Diffstat (limited to 'kvm_sys')
-rw-r--r--kvm_sys/src/lib.rs3
-rw-r--r--kvm_sys/tests/sanity.rs3
2 files changed, 0 insertions, 6 deletions
diff --git a/kvm_sys/src/lib.rs b/kvm_sys/src/lib.rs
index bea9242..9000b79 100644
--- a/kvm_sys/src/lib.rs
+++ b/kvm_sys/src/lib.rs
@@ -6,9 +6,6 @@
 #![allow(non_camel_case_types)]
 #![allow(non_snake_case)]
 
-#[macro_use]
-extern crate sys_util;
-
 use sys_util::{ioctl_io_nr, ioctl_ior_nr, ioctl_iow_nr, ioctl_iowr_nr};
 
 // Somehow this one gets missed by bindgen
diff --git a/kvm_sys/tests/sanity.rs b/kvm_sys/tests/sanity.rs
index 2dd1326..7669b44 100644
--- a/kvm_sys/tests/sanity.rs
+++ b/kvm_sys/tests/sanity.rs
@@ -2,9 +2,6 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-extern crate kvm_sys;
-extern crate libc;
-
 use libc::{c_char, ioctl, open, O_RDWR};
 
 use kvm_sys::*;