blob: c2524eef2b157b90e43ae1a7c171a420d9b79945 [file] [log] [blame]
#include <sys/socket.h>
#include <unistd.h>
#include "fdleak.h"
int
main (int argc, char **argv)
{
int fds[2];
CLOSE_INHERITED_FDS;
socketpair(AF_UNIX, SOCK_STREAM, PF_UNIX, fds);
return 0;
}