Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/libstd/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ pub trait GenericPath : Clone + Eq + ToStr {

#[cfg(target_os = "linux")]
#[cfg(target_os = "android")]
mod stat {
pub mod stat {
#[cfg(target_arch = "x86")]
pub mod arch {
use libc;
Expand Down Expand Up @@ -373,7 +373,7 @@ mod stat {
}

#[cfg(target_os = "freebsd")]
mod stat {
pub mod stat {
#[cfg(target_arch = "x86_64")]
pub mod arch {
use libc;
Expand Down Expand Up @@ -408,7 +408,7 @@ mod stat {
}

#[cfg(target_os = "macos")]
mod stat {
pub mod stat {
pub mod arch {
use libc;

Expand Down Expand Up @@ -442,7 +442,7 @@ mod stat {
}

#[cfg(target_os = "win32")]
mod stat {
pub mod stat {
pub mod arch {
use libc;
pub fn default_stat() -> libc::stat {
Expand Down