mirror of
https://github.com/fluencelabs/musl
synced 2025-05-15 08:41:31 +00:00
10 lines
232 B
C
10 lines
232 B
C
|
#include <sys/socket.h>
|
||
|
#include "syscall.h"
|
||
|
#include "socketcall.h"
|
||
|
|
||
|
int socket(int domain, int type, int protocol)
|
||
|
{
|
||
|
unsigned long args[] = { domain, type, protocol };
|
||
|
return syscall2(__NR_socketcall, SYS_SOCKET, (long)args);
|
||
|
}
|