| ... | ... | @@ -61,7 +61,6 @@ pub extern "c" fn abort() noreturn; |
| 61 | 61 | pub extern "c" fn exit(code: c_int) noreturn; |
| 62 | 62 | pub extern "c" fn isatty(fd: fd_t) c_int; |
| 63 | 63 | pub extern "c" fn close(fd: fd_t) c_int; |
| 64 | | pub extern "c" fn @"close$NOCANCEL"(fd: fd_t) c_int; |
| 65 | 64 | pub extern "c" fn fstat(fd: fd_t, buf: *Stat) c_int; |
| 66 | 65 | pub extern "c" fn @"fstat$INODE64"(fd: fd_t, buf: *Stat) c_int; |
| 67 | 66 | pub extern "c" fn lseek(fd: fd_t, offset: off_t, whence: c_int) off_t; |
| ... | ... | @@ -150,6 +149,10 @@ pub extern "c" fn realloc(?*c_void, usize) ?*c_void; |
| 150 | 149 | pub extern "c" fn free(*c_void) void; |
| 151 | 150 | pub extern "c" fn posix_memalign(memptr: **c_void, alignment: usize, size: usize) c_int; |
| 152 | 151 | |
| 152 | // Deprecated |
| 153 | pub extern "c" fn futimes(fd: fd_t, times: *[2]timeval) c_int; |
| 154 | pub extern "c" fn utimes(path: [*]const u8, times: *[2]timeval) c_int; |
| 155 | |
| 153 | 156 | pub extern "c" fn utimensat(dirfd: fd_t, pathname: [*]const u8, times: *[2]timespec, flags: u32) c_int; |
| 154 | 157 | pub extern "c" fn futimens(fd: fd_t, times: *const [2]timespec) c_int; |
| 155 | 158 | |