We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7dcf2 commit 4128eeaCopy full SHA for 4128eea
lib/std/c.zig
@@ -342,6 +342,8 @@ pub extern "c" fn prctl(option: c_int, ...) c_int;
342
pub extern "c" fn getrlimit(resource: rlimit_resource, rlim: *rlimit) c_int;
343
pub extern "c" fn setrlimit(resource: rlimit_resource, rlim: *const rlimit) c_int;
344
345
+pub extern "c" fn fmemopen(noalias buf: ?*c_void, size: usize, noalias mode: [*:0]const u8) ?*FILE;
346
+
347
pub const max_align_t = if (std.Target.current.abi == .msvc)
348
f64
349
else if (std.Target.current.isDarwin())
0 commit comments