1#include <unistd.h>
2#include "fdleak.h"
3
4int main (int argc, char **argv)
5{
6   int fds[2];
7
8   CLOSE_INHERITED_FDS;
9
10   (void) DO( pipe(fds) );
11
12   return 0;
13}
14