blob: d477b3be7af2c578b7db30fccfc03896ef1cccd0 [file] [log] [blame]
#include <fcntl.h>
#include <unistd.h>
#include "fdleak.h"
int main (int argc, char **argv)
{
CLOSE_INHERITED_FDS;
DO( open("/dev/null", O_RDONLY) );
return 0;
}