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 b889913 commit efb5f87Copy full SHA for efb5f87
src/libcore/io.rs
@@ -1204,9 +1204,11 @@ pub fn read_whole_file(file: &Path) -> Result<~[u8], ~str> {
1204
// fsync related
1205
1206
pub mod fsync {
1207
- use prelude::*;
1208
use io::{FILERes, FdRes, fd_t};
+ use kinds::Copy;
1209
use libc;
1210
+ use ops::Drop;
1211
+ use option::{None, Option, Some};
1212
use os;
1213
1214
pub enum Level {
src/libcore/libc.rs
@@ -230,8 +230,6 @@ pub mod types {
230
pub type uintptr_t = uint;
231
}
232
pub mod posix88 {
233
234
-
235
pub type off_t = i32;
236
pub type dev_t = u64;
237
pub type ino_t = u32;
0 commit comments