ftmemsim-valgrind/none/tests/fdleak_fcntl.c
Florian Krohm 9de72049d5 Silence clang warnings for the none and exp-sgcheck tools.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13605
2013-10-02 15:37:03 +00: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;
}