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