C++程序  |  17行  |  250 B

#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include "fdleak.h"

int main (int argc, char **argv)
{
   int s1;

   CLOSE_INHERITED_FDS;

   s1 = DO( open("/dev/null", O_RDONLY) );
   (void) DO( fcntl(s1, F_DUPFD, s1) );

   return 0;
}