static int unix_stream_socket()

in watchman.c [94:98]


static int unix_stream_socket(void)
{
    int fd = socket(AF_UNIX, SOCK_STREAM, 0);
    return fd;
}