slightly cleaner strlen, also seems to compile to better code
[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 }