1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-14 08:11:28 +00:00

8 lines
158 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/socket.h>
#include "syscall.h"
int socket(int domain, int type, int protocol)
{
return socketcall(socket, domain, type, protocol, 0, 0, 0);
2011-02-12 00:22:29 -05:00
}