fdleak_pipe.c revision 436e89c602e787e7a27dd6624b09beed41a0da8a
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