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.
1 parent 1f1e7e9 commit 62f6f46Copy full SHA for 62f6f46
src/libcore/os.rs
@@ -88,6 +88,10 @@ pub fn fill_charp_buf(f: fn(*mut c_char, size_t) -> bool)
88
89
#[cfg(windows)]
90
pub mod win32 {
91
+ use libc;
92
+ use vec;
93
+ use str;
94
+ use option;
95
use libc::types::os::arch::extra::DWORD;
96
97
pub fn fill_utf16_buf_and_decode(f: fn(*mut u16, DWORD) -> DWORD)
src/libcore/path.rs
@@ -219,6 +219,7 @@ mod stat {
219
#[cfg(target_os = "win32")]
220
mod stat {
221
pub mod arch {
222
223
pub fn default_stat() -> libc::stat {
224
libc::stat {
225
st_dev: 0,
0 commit comments