summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_tcp4.c
blob: 8eecb67ade16c8aa90ee35cc92b4c6e1a879e1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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) ;
}