1 2 3 4 5
#include <syscalls.h> int syscall_socket(SYS_SOCKET_PARAMS *args) { return socket(args->domain, args->type, args->protocol); }