socket_tcp4.c (237B)
1 /* ISC license. */ 2 3 #include <skalibs/nonposix.h> 4 #include <sys/socket.h> 5 #include <netinet/in.h> 6 7 #include <skalibs/socket.h> 8 9 int socket_tcp4_internal (unsigned int flags) 10 { 11 return socket_internal(AF_INET, SOCK_STREAM, 0, flags) ; 12 }