summaryrefslogtreecommitdiff
path: root/src/sys/termios.rs
diff options
context:
space:
mode:
authorZac Berkowitz <zac.berkowitz@gmail.com>2017-03-10 15:46:58 +0000
committerBryant Mairs <bryant@mai.rs>2017-04-09 07:41:58 -0700
commitd623db97a26802bf5f5ed3ebdb87406f2f8ce9a1 (patch)
tree9167e1ae9e292b9cd0b607dff69b7515a4934e4d /src/sys/termios.rs
parent90b22ff160b7b20fd815a783343a081dfad31948 (diff)
downloadnix-d623db97a26802bf5f5ed3ebdb87406f2f8ce9a1.zip
Removed unused libc imports in termios.
Diffstat (limited to 'src/sys/termios.rs')
-rw-r--r--src/sys/termios.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/termios.rs b/src/sys/termios.rs
index 6ff77747..126d149c 100644
--- a/src/sys/termios.rs
+++ b/src/sys/termios.rs
@@ -99,7 +99,7 @@ mod ffi {
use libc;
- use libc::{c_int, c_uint, c_ulong, c_uchar};
+ use libc::c_int;
pub type tcflag_t = libc::tcflag_t;
pub type cc_t = libc::cc_t;