mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
ff2c794612
See #273
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;
|