1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-10 17:36:21 +00:00
2015-12-13 22:34:58 +09:00

17 lines
250 B
C

#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;
}