mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
13 lines
174 B
C
13 lines
174 B
C
#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;
|
|
}
|