forked from Bananymous/banan-os
9 lines
174 B
C++
9 lines
174 B
C++
|
#include <sys/socket.h>
|
||
|
#include <sys/syscall.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int socket(int domain, int type, int protocol)
|
||
|
{
|
||
|
return syscall(SYS_SOCKET, domain, type, protocol);
|
||
|
}
|