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 bf02053 commit b016185Copy full SHA for b016185
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 21c69d4ba4ddaabbc43c82c040ecc8edd916e27b
+refs/heads/master: 39b05c85b804d7a69f26044b8bec2bc78389921f
trunk/src/lib/win32_os.rs
@@ -16,7 +16,6 @@ native mod libc {
16
fn _fdopen(fd: fd_t, mode: str::sbuf) -> FILE;
17
fn fclose(f: FILE);
18
fn fflush(f: FILE) -> c_int;
19
- fn fsync(fd: fd_t) -> c_int;
20
fn fileno(f: FILE) -> fd_t;
21
fn fgetc(f: FILE) -> c_int;
22
fn ungetc(c: c_int, f: FILE);
@@ -97,8 +96,7 @@ fn fclose(file: libc::FILE) {
97
96
}
98
99
fn fsync_fd(fd: fd_t, level: io::fsync::level) -> c_int {
100
- // FIXME do something more apropriate
101
- ret libc::fsync(fd);
+ // FIXME
102
103
104
#[abi = "cdecl"]
0 commit comments