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