std.c: Remove serenity's internet_checksum() function

See: 59911d8da3
This commit is contained in:
Linus Groh 2025-08-10 13:54:38 +02:00 committed by Alex Rønne Petersen
parent 0a1a738320
commit 6a1d61d504
2 changed files with 0 additions and 3 deletions

View file

@ -11263,7 +11263,6 @@ pub const serenity_readlink = serenity.serenity_readlink;
pub const serenity_open = serenity.serenity_open;
pub const getkeymap = serenity.getkeymap;
pub const setkeymap = serenity.setkeymap;
pub const internet_checksum = serenity.internet_checksum;
/// External definitions shared by two or more operating systems.
const private = struct {

View file

@ -71,5 +71,3 @@ pub extern "c" fn serenity_open(path: [*]const u8, path_length: usize, options:
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;
pub extern "c" fn internet_checksum(ptr: *const anyopaque, count: usize) u16;