13 lines
160 B
C
13 lines
160 B
C
#include <unistd.h>
|
|
#include "fdleak.h"
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
int fds[2];
|
|
|
|
CLOSE_INHERITED_FDS;
|
|
|
|
(void) DO( pipe(fds) );
|
|
|
|
return 0;
|
|
}
|