blob: 7f3fd72e90735e4f654ed1788d6d92e63aff094b [file] [log] [blame]
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include "fdleak.h"
int
main (int argc, char **argv)
{
char filename[24];
CLOSE_INHERITED_FDS;
sprintf(filename, "/tmp/file.%d", getpid());
creat(filename, 0);
unlink(filename);
return 0;
}