1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #1997 from sylvestre/polish3

Rustfmt+clippy+cargo.lock update
This commit is contained in:
Sylvestre Ledru 2021-04-02 11:37:56 +02:00 committed by GitHub
commit de6aa69259
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 24 additions and 26 deletions

View file

@ -1,8 +1,11 @@
#![allow(dead_code)]
#[cfg(not(windows))]
use libc;
use std::env;
use std::ffi::{CString, OsStr};
#[cfg(not(windows))]
use std::ffi::CString;
use std::ffi::OsStr;
use std::fs::{self, File, OpenOptions};
use std::io::{Read, Result, Write};
#[cfg(unix)]