mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-05 11:10:21 +00:00
18 lines
210 B
C
18 lines
210 B
C
#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;
|
|
}
|