summaryrefslogtreecommitdiff
path: root/src/libstddjb/ipc_stream.c
blob: 265236d559fe6a4e9c59bbe76258e90fbe005df9 (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <skalibs/socket.h>

int ipc_stream_internal (unsigned int flags)
{
  return socket_internal(AF_UNIX, SOCK_STREAM, 0, flags) ;
}