mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
6 lines
207 B
Zig
6 lines
207 B
Zig
pub use @import("../os/linux_errno.zig");
|
|
|
|
pub extern "c" fn getrandom(buf_ptr: &u8, buf_len: usize, flags: c_uint) -> c_int;
|
|
extern "c" fn __errno_location() -> &c_int;
|
|
pub const _errno = __errno_location;
|