| ... | @@ -103,7 +103,7 @@ pub extern "c" fn linkat(oldfd: fd_t, oldpath: [*:0]const u8, newfd: fd_t, newpa | ... | @@ -103,7 +103,7 @@ pub extern "c" fn linkat(oldfd: fd_t, oldpath: [*:0]const u8, newfd: fd_t, newpa |
| 103 | pub extern "c" fn unlink(path: [*:0]const u8) c_int; | 103 | pub extern "c" fn unlink(path: [*:0]const u8) c_int; |
| 104 | pub extern "c" fn unlinkat(dirfd: fd_t, path: [*:0]const u8, flags: c_uint) c_int; | 104 | pub extern "c" fn unlinkat(dirfd: fd_t, path: [*:0]const u8, flags: c_uint) c_int; |
| 105 | pub extern "c" fn getcwd(buf: [*]u8, size: usize) ?[*]u8; | 105 | pub extern "c" fn getcwd(buf: [*]u8, size: usize) ?[*]u8; |
| 106 | pub extern "c" fn waitpid(pid: c_int, stat_loc: *c_uint, options: c_uint) c_int; | 106 | pub extern "c" fn waitpid(pid: pid_t, stat_loc: ?*c_int, options: c_int) pid_t; |
| 107 | pub extern "c" fn fork() c_int; | 107 | pub extern "c" fn fork() c_int; |
| 108 | pub extern "c" fn access(path: [*:0]const u8, mode: c_uint) c_int; | 108 | pub extern "c" fn access(path: [*:0]const u8, mode: c_uint) c_int; |
| 109 | pub extern "c" fn faccessat(dirfd: fd_t, path: [*:0]const u8, mode: c_uint, flags: c_uint) c_int; | 109 | pub extern "c" fn faccessat(dirfd: fd_t, path: [*:0]const u8, mode: c_uint, flags: c_uint) c_int; |