std.c: was missing calloc

This commit is contained in:
Meghan Denny 2025-02-10 20:52:34 -08:00 committed by Andrew Kelley
parent 33f0d458cf
commit b2b830e0e9

View File

@ -9657,6 +9657,7 @@ 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 malloc(usize) ?*anyopaque;
pub extern "c" fn calloc(usize, usize) ?*anyopaque;
pub extern "c" fn realloc(?*anyopaque, usize) ?*anyopaque;
pub extern "c" fn free(?*anyopaque) void;