mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
initial check-in, version 0.5.0
This commit is contained in:
9
src/network/socket.c
Normal file
9
src/network/socket.c
Normal file
@ -0,0 +1,9 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user