mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.c: add getresuid & getresgid
This commit is contained in:
parent
a11dfaf61a
commit
18bdd0e9a4
1 changed files with 2 additions and 0 deletions
|
|
@ -10756,6 +10756,8 @@ pub extern "c" fn setresgid(rgid: gid_t, egid: gid_t, sgid: gid_t) c_int;
|
|||
pub extern "c" fn setpgid(pid: pid_t, pgid: pid_t) c_int;
|
||||
pub extern "c" fn getuid() uid_t;
|
||||
pub extern "c" fn geteuid() uid_t;
|
||||
pub extern "c" fn getresuid(ruid: *uid_t, euid: *uid_t, suid: *uid_t) c_int;
|
||||
pub extern "c" fn getresgid(rgid: *gid_t, egid: *gid_t, sgid: *gid_t) c_int;
|
||||
|
||||
pub extern "c" fn malloc(usize) ?*anyopaque;
|
||||
pub extern "c" fn calloc(usize, usize) ?*anyopaque;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue