| author | |
| committer | |
| log | 6e635c64061dfc35b8178810bdd5bfc5452b9d28 |
| tree | a2adbde2846e0c9de2b27a8cc83d173cd482a84b |
| parent | 711520d935fd7f6367f1d3a0c2c01c140647b4d0 |
| signature |
2 files changed, 1 insertions(+), 1 deletions(-)
lib/std/c.zig-1| ... | @@ -61,7 +61,6 @@ pub extern "c" fn abort() noreturn; | ... | @@ -61,7 +61,6 @@ pub extern "c" fn abort() noreturn; |
| 61 | pub extern "c" fn exit(code: c_int) noreturn; | 61 | pub extern "c" fn exit(code: c_int) noreturn; |
| 62 | pub extern "c" fn isatty(fd: fd_t) c_int; | 62 | pub extern "c" fn isatty(fd: fd_t) c_int; |
| 63 | pub extern "c" fn close(fd: fd_t) c_int; | 63 | pub extern "c" fn close(fd: fd_t) c_int; |
| 64 | pub extern "c" fn @"close$NOCANCEL"(fd: fd_t) c_int; | ||
| 65 | pub extern "c" fn fstat(fd: fd_t, buf: *Stat) c_int; | 64 | pub extern "c" fn fstat(fd: fd_t, buf: *Stat) c_int; |
| 66 | pub extern "c" fn @"fstat$INODE64"(fd: fd_t, buf: *Stat) c_int; | 65 | pub extern "c" fn @"fstat$INODE64"(fd: fd_t, buf: *Stat) c_int; |
| 67 | pub extern "c" fn lseek(fd: fd_t, offset: off_t, whence: c_int) off_t; | 66 | pub extern "c" fn lseek(fd: fd_t, offset: off_t, whence: c_int) off_t; |
lib/std/c/darwin.zig+1| ... | @@ -46,6 +46,7 @@ pub const mach_header = macho.mach_header; | ... | @@ -46,6 +46,7 @@ pub const mach_header = macho.mach_header; |
| 46 | 46 | ||
| 47 | pub const _errno = __error; | 47 | pub const _errno = __error; |
| 48 | 48 | ||
| 49 | pub extern "c" fn @"close$NOCANCEL"(fd: fd_t) c_int; | ||
| 49 | pub extern "c" fn mach_host_self() mach_port_t; | 50 | pub extern "c" fn mach_host_self() mach_port_t; |
| 50 | pub extern "c" fn clock_get_time(clock_serv: clock_serv_t, cur_time: *mach_timespec_t) kern_return_t; | 51 | pub extern "c" fn clock_get_time(clock_serv: clock_serv_t, cur_time: *mach_timespec_t) kern_return_t; |
| 51 | pub extern "c" fn host_get_clock_service(host: host_t, clock_id: clock_id_t, clock_serv: ?[*]clock_serv_t) kern_return_t; | 52 | pub extern "c" fn host_get_clock_service(host: host_t, clock_id: clock_id_t, clock_serv: ?[*]clock_serv_t) kern_return_t; |