blob: 82ff24e885603b18743f44ddfc47873707ce94ad [file] [log] [blame]
#include <unistd.h>
#include "fdleak.h"
int main (int argc, char **argv)
{
int fds[2];
CLOSE_INHERITED_FDS;
(void) DO( pipe(fds) );
return 0;
}