update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / src / network / socket.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int socket(int domain, int type, int protocol)
5 {
6         return socketcall(socket, domain, type, protocol, 0, 0, 0);
7 }