mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
feat(std.c): add _Exit
This commit is contained in:
parent
a2ea36a517
commit
d5c3bf25dc
1 changed files with 1 additions and 0 deletions
|
|
@ -10649,6 +10649,7 @@ pub extern "c" fn fread(noalias ptr: [*]u8, size_of_type: usize, item_count: usi
|
|||
pub extern "c" fn printf(format: [*:0]const u8, ...) c_int;
|
||||
pub extern "c" fn abort() noreturn;
|
||||
pub extern "c" fn exit(code: c_int) noreturn;
|
||||
pub extern "c" fn _Exit(code: c_int) noreturn;
|
||||
pub extern "c" fn _exit(code: c_int) noreturn;
|
||||
pub extern "c" fn isatty(fd: fd_t) c_int;
|
||||
pub extern "c" fn lseek(fd: fd_t, offset: off_t, whence: whence_t) off_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue