mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-10 21:47:06 +00:00
16 lines
170 B
C
16 lines
170 B
C
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include "fdleak.h"
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
|
|
|
|
|
|
CLOSE_INHERITED_FDS;
|
|
|
|
open("/dev/null", O_RDONLY);
|
|
return 0;
|
|
}
|