mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std.c: Remove serenity's serenity_{open,readlink}() functions
See: https://github.com/SerenityOS/serenity/commit/e4c989e45f0d30b7049b3f1d001cf4a87104d277
This commit is contained in:
@@ -11466,8 +11466,6 @@ pub const perf_event = serenity.perf_event;
|
||||
pub const perf_register_string = serenity.perf_register_string;
|
||||
pub const get_stack_bounds = serenity.get_stack_bounds;
|
||||
pub const anon_create = serenity.anon_create;
|
||||
pub const serenity_readlink = serenity.serenity_readlink;
|
||||
pub const serenity_open = serenity.serenity_open;
|
||||
pub const getkeymap = serenity.getkeymap;
|
||||
pub const setkeymap = serenity.setkeymap;
|
||||
|
||||
|
||||
@@ -66,9 +66,6 @@ pub extern "c" fn get_stack_bounds(user_stack_base: *usize, user_stack_size: *us
|
||||
|
||||
pub extern "c" fn anon_create(size: usize, options: O) c_int;
|
||||
|
||||
pub extern "c" fn serenity_readlink(path: [*]const u8, path_length: usize, buffer: [*]u8, buffer_size: usize) c_int;
|
||||
pub extern "c" fn serenity_open(path: [*]const u8, path_length: usize, options: c_int, ...) c_int;
|
||||
|
||||
pub extern "c" fn getkeymap(name_buffer: [*]u8, name_buffer_size: usize, map: [*]u32, shift_map: [*]u32, alt_map: [*]u32, altgr_map: [*]u32, shift_altgr_map: [*]u32) c_int;
|
||||
pub extern "c" fn setkeymap(name: [*]const u8, map: [*]const u32, shift_map: [*]const u32, alt_map: [*]const u32, altgr_map: [*]const u32, shift_altgr_map: [*]const u32) c_int;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user