const constants = @import("./posix/constants.zig");
const errno = @import("./posix/errno.zig");
const netdb = @import("./posix/netdb.zig");
const other = @import("./posix/other.zig");
const spawn = @import("./posix/spawn.zig");
const socket = @import("./posix/socket.zig");
const stat = @import("./posix/stat.zig");
const stdio = @import("./posix/stdio.zig");
const stdlib = @import("./posix/stdlib.zig");
const string = @import("./posix/string.zig");
const termios = @import("./posix/termios.zig");
const unistd = @import("./posix/unistd.zig");
pub fn keepalive() void {
constants.keepalive();
errno.keepalive();
netdb.keepalive();
other.keepalive();
socket.keepalive();
spawn.keepalive();
stdio.keepalive();
stdlib.keepalive();
stat.keepalive();
string.keepalive();
termios.keepalive();
unistd.keepalive();
}