diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 12:50:16 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 13:29:42 -0400 |
commit | c3ef358c01956bfa44a7427a2548943c3f045138 (patch) | |
tree | 25ea571fb39bccaa9cd0817f30114875e7382cee /cli/ops/io.rs | |
parent | 0cb64cef767170827806974e59075dc56c2eafe5 (diff) |
Remove unnecessary extern statements
Diffstat (limited to 'cli/ops/io.rs')
-rw-r--r-- | cli/ops/io.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/ops/io.rs b/cli/ops/io.rs index 8f8d9fc26..0992f768b 100644 --- a/cli/ops/io.rs +++ b/cli/ops/io.rs @@ -30,9 +30,6 @@ use std::os::unix::io::FromRawFd; #[cfg(windows)] use std::os::windows::io::FromRawHandle; -#[cfg(windows)] -extern crate winapi; - lazy_static! { /// Due to portability issues on Windows handle to stdout is created from raw /// file descriptor. The caveat of that approach is fact that when this |