remove some stray trailing space characters
[musl] / 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 }