We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 718799c + ddca4c3 commit 725b57bCopy full SHA for 725b57b
.travis.yml
@@ -4,7 +4,7 @@ git:
4
5
matrix:
6
include:
7
- - rust: 1.30.0
+ - rust: 1.32.0
8
- rust: stable
9
- os: osx
10
rust: stable
src/test.rs
@@ -44,7 +44,7 @@ pub fn realpath(original: &Path) -> io::Result<PathBuf> {
44
pub fn realpath(original: &Path) -> io::Result<PathBuf> {
45
use std::ffi::{CStr, OsString, CString};
46
use std::os::unix::prelude::*;
47
- use libc::{self, c_char};
+ use libc::c_char;
48
extern {
49
fn realpath(name: *const c_char, resolved: *mut c_char) -> *mut c_char;
50
}
0 commit comments